-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtracetype.py
executable file
·569 lines (477 loc) · 17.6 KB
/
tracetype.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
import numpy as np
import pandas as pd
from pandas.api.extensions import ExtensionScalarOpsMixin
from pandas.core.arrays import ExtensionArray
from pandas.core.dtypes.base import ExtensionDtype
class Trace:
def __init__(self, val, meta=None, orig=None):
# print(orig)
if meta is None:
meta = set()
if isinstance(meta, Trace):
meta = Trace.meta
if not isinstance(meta, set):
meta = {meta}
if isinstance(val, Trace):
meta = meta | val.meta
val = val.val
if meta == set() and orig is not None:
if isinstance(orig, Trace):
orig = Trace.meta
if not isinstance(orig, set):
orig = {orig}
meta = orig
self.val = val
self.meta = meta
def is_nan(self):
return pd.isnull(self.val)
# def isna(self):
# return pd.isnull(self.val)
def __hash__(self):
return hash(self.val)
# https://diveintopython3.net/special-method-names.html
def __str__(self):
return str(self.val) + "`"
# return str(self.val) + "_" + str(self.meta)
# return repr(self)
def __repr__(self):
return "Trace(" + repr(self.val) + ', ' + repr(self.meta) + ')'
def __add__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val + other.val, self.meta | other.meta)
def __sub__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val - other.val, self.meta | other.meta)
def __mul__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val * other.val, self.meta | other.meta)
def __truediv__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val / other.val, self.meta | other.meta)
def __floordiv__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val // other.val, self.meta | other.meta)
def __mod__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val % other.val, self.meta | other.meta)
# skip divmod for now
def __pow__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val ** other.val, self.meta | other.meta)
def __lshift__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val << other.val, self.meta | other.meta)
def __rshift__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val >> other.val, self.meta | other.meta)
def __and__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val & other.val, self.meta | other.meta)
def __xor__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val ^ other.val, self.meta | other.meta)
def __or__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val | other.val, self.meta | other.meta)
# r
def __radd__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val + self.val, self.meta | other.meta)
def __rsub__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val - self.val, self.meta | other.meta)
def __rmul__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val * self.val, self.meta | other.meta)
def __rtruediv__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val / self.val, self.meta | other.meta)
def __rfloordiv__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val // self.val, self.meta | other.meta)
def __rmod__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val % self.val, self.meta | other.meta)
# skip rdivmod for now
def __rpow__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val ** self.val, self.meta | other.meta)
def __rlshift__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val << self.val, self.meta | other.meta)
def __rrshift__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val >> self.val, self.meta | other.meta)
def __rand__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val & self.val, self.meta | other.meta)
def __rxor__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val ^ self.val, self.meta | other.meta)
def __ror__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(other.val | self.val, self.meta | other.meta)
# unary
def __neg__(self):
return Trace(-self.val, self.meta)
def __pos__(self):
return Trace(+self.val, self.meta)
def __abs__(self):
return Trace(abs(self.val), self.meta)
def __invert__(self):
return Trace(~self.val, self.meta)
def __complex__(self):
return Trace(complex(self.val), self.meta)
def __int__(self):
return Trace(int(self.val), self.meta)
def __float__(self):
return Trace(float(self.val), self.meta)
def __round__(self):
return Trace(round(self.val), self.meta)
def __round__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(round(self.val, other.val), self.meta | other.meta)
def __ceil__(self):
return Trace(math.ceil(self.val), self.meta)
def __floor__(self):
return Trace(math.floor(self.val), self.meta)
def __trunc__(self):
return Trace(math.trunc(self.val), self.meta)
def __index__(self):
return self.val.__int__()
# comp
def __eq__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(True, self.meta | other.meta)
if self.is_nan():
return Trace(False, self.meta)
if other.is_nan():
return Trace(False, other.meta)
return Trace(self.val == other.val, self.meta | other.meta)
def __ne__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(False, self.meta | other.meta)
if self.is_nan():
return Trace(True, self.meta)
if other.is_nan():
return Trace(True, other.meta)
return Trace(self.val != other.val, self.meta | other.meta)
def __lt__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val < other.val, self.meta | other.meta)
def __le__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val <= other.val, self.meta | other.meta)
def __gt__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val > other.val, self.meta | other.meta)
def __ge__(self, other):
if not isinstance(other, Trace):
other = Trace(other)
if self.is_nan() and other.is_nan():
return Trace(pd.NA, self.meta | other.meta)
if self.is_nan():
return self
if other.is_nan():
return other
return Trace(self.val >= other.val, self.meta | other.meta)
def __bool__(self):
return self.val.__bool__()
def __call__(self, *args, **kwargs):
return self.val(*args, **kwargs)
class TraceDtype(ExtensionDtype):
"""A custom data type, to be paired with an ExtensionArray."""
type = Trace
name = "Trace"
na_value = pd.NA
def __init__(self, orig=None):
self.orig = orig
#self.na_value = Trace(pd.NA, orig)
@classmethod
def construct_array_type(cls):
"""Return the array type associated with this dtype."""
return TraceArray
class TraceArray(ExtensionArray, ExtensionScalarOpsMixin):
"""Abstract base class for custom 1-D array types."""
def __init__(self, values, orig=None, dtype=None, copy=False):
"""Instantiate the array.
If you're doing any type coercion in here, you will also need
that in an overwritten __setitem__ method.
But, here we coerce the input values into Decimals.
"""
if isinstance(dtype, TraceDtype) and orig is None:
orig = dtype.orig
values = [Trace(val, None, orig) for val in values]
self._data = np.asarray(values, dtype=object)
self._dtype = TraceDtype(orig)
@classmethod
def _from_sequence(cls, scalars, dtype=None, copy=False):
"""Construct a new ExtensionArray from a sequence of scalars."""
return cls(scalars, dtype=dtype)
@classmethod
def _from_factorized(cls, values, original):
"""Reconstruct an ExtensionArray after factorization."""
return cls(values)
def __getitem__(self, item):
"""Select a subset of self."""
return self._data[item]
def __len__(self) -> int:
"""Length of this array."""
return len(self._data)
@property
def nbytes(self):
"""The byte size of the data."""
return self._itemsize * len(self)
@property
def dtype(self):
"""An instance of 'ExtensionDtype'."""
return self._dtype
def isna(self):
"""A 1-D array indicating if each value is missing."""
return np.array([x.is_nan() for x in self._data], dtype=bool)
def take(self, indexer, allow_fill=False, fill_value=None):
"""Take elements from an array.
Relies on the take method defined in pandas:
https://github.com/pandas-dev/pandas/blob/e246c3b05924ac1fe083565a765ce847fcad3d91/pandas/core/algorithms.py#L1483
"""
from pandas.api.extensions import take
data = self._data
if allow_fill and fill_value is None:
fill_value = self.dtype.na_value
result = take(
data, indexer, fill_value=fill_value, allow_fill=allow_fill)
return self._from_sequence(result)
def copy(self):
"""Return a copy of the array."""
return type(self)(self._data.copy())
@classmethod
def _concat_same_type(cls, to_concat):
"""Concatenate multiple arrays."""
return cls(np.concatenate([x._data for x in to_concat]))
# https://pandas.pydata.org/docs/development/extending.html#:~:text=pandas%20itself%20uses%20the%20extension,custom%20array%20and%20data%20type
TraceArray._add_arithmetic_ops()
TraceArray._add_comparison_ops()
def trace(df, orig=None):
return df.astype('O').astype(TraceDtype(orig)).astype('O')
def isna(df):
return df.astype(TraceDtype()).isna()
def dropna(df, axis=0):
return df.astype(TraceDtype()).dropna(axis=axis).astype('O')
def untrace(data):
if isinstance(data, list):
return [x.val for x in data]
if isinstance(data, pd.DataFrame):
return trace(data,None).applymap(lambda x: x.val)
try:
return data.val
except:
return data
def gettrace(data):
if isinstance(data, list):
return [x.meta for x in data]
if isinstance(data, pd.DataFrame):
return trace(data,None).applymap(lambda x: x.meta)
try:
return data.meta
except:
return data