microdf-python 0.4.3__tar.gz → 0.4.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {microdf_python-0.4.3/microdf_python.egg-info → microdf_python-0.4.4}/PKG-INFO +10 -2
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/generic.py +42 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4/microdf_python.egg-info}/PKG-INFO +10 -2
- {microdf_python-0.4.3 → microdf_python-0.4.4}/setup.py +1 -1
- {microdf_python-0.4.3 → microdf_python-0.4.4}/LICENSE +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/README.md +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/__init__.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/_optional.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/agg.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/chart_utils.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/charts.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/concat.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/constants.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/custom_taxes.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/income_measures.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/inequality.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/io.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/poverty.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/style.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/tax.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/taxcalc.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/ubi.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/utils.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf/weighted.py +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf_python.egg-info/SOURCES.txt +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf_python.egg-info/dependency_links.txt +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf_python.egg-info/not-zip-safe +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf_python.egg-info/requires.txt +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/microdf_python.egg-info/top_level.txt +0 -0
- {microdf_python-0.4.3 → microdf_python-0.4.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: microdf-python
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.4
|
|
4
4
|
Summary: Survey microdata as DataFrames.
|
|
5
5
|
Home-page: http://github.com/PSLmodels/microdf
|
|
6
6
|
Author: Max Ghenis
|
|
@@ -15,3 +15,11 @@ Provides-Extra: charts
|
|
|
15
15
|
Requires-Dist: seaborn; extra == "charts"
|
|
16
16
|
Requires-Dist: matplotlib; extra == "charts"
|
|
17
17
|
Requires-Dist: matplotlib-label-lines; extra == "charts"
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
Dynamic: home-page
|
|
21
|
+
Dynamic: license
|
|
22
|
+
Dynamic: license-file
|
|
23
|
+
Dynamic: provides-extra
|
|
24
|
+
Dynamic: requires-dist
|
|
25
|
+
Dynamic: summary
|
|
@@ -320,6 +320,48 @@ class MicroSeries(pd.Series):
|
|
|
320
320
|
def __pow__(self, other):
|
|
321
321
|
return MicroSeries(super().__pow__(other), weights=self.weights)
|
|
322
322
|
|
|
323
|
+
def __xor__(self, other):
|
|
324
|
+
return MicroSeries(super().__xor__(other), weights=self.weights)
|
|
325
|
+
|
|
326
|
+
def __and__(self, other):
|
|
327
|
+
return MicroSeries(super().__and__(other), weights=self.weights)
|
|
328
|
+
|
|
329
|
+
def __or__(self, other):
|
|
330
|
+
return MicroSeries(super().__or__(other), weights=self.weights)
|
|
331
|
+
|
|
332
|
+
def __invert__(self):
|
|
333
|
+
return MicroSeries(super().__invert__(), weights=self.weights)
|
|
334
|
+
|
|
335
|
+
def __radd__(self, other):
|
|
336
|
+
return MicroSeries(super().__radd__(other), weights=self.weights)
|
|
337
|
+
|
|
338
|
+
def __rsub__(self, other):
|
|
339
|
+
return MicroSeries(super().__rsub__(other), weights=self.weights)
|
|
340
|
+
|
|
341
|
+
def __rmul__(self, other):
|
|
342
|
+
return MicroSeries(super().__rmul__(other), weights=self.weights)
|
|
343
|
+
|
|
344
|
+
def __rfloordiv__(self, other):
|
|
345
|
+
return MicroSeries(super().__rfloordiv__(other), weights=self.weights)
|
|
346
|
+
|
|
347
|
+
def __rtruediv__(self, other):
|
|
348
|
+
return MicroSeries(super().__rtruediv__(other), weights=self.weights)
|
|
349
|
+
|
|
350
|
+
def __rmod__(self, other):
|
|
351
|
+
return MicroSeries(super().__rmod__(other), weights=self.weights)
|
|
352
|
+
|
|
353
|
+
def __rpow__(self, other):
|
|
354
|
+
return MicroSeries(super().__rpow__(other), weights=self.weights)
|
|
355
|
+
|
|
356
|
+
def __rand__(self, other):
|
|
357
|
+
return MicroSeries(super().__rand__(other), weights=self.weights)
|
|
358
|
+
|
|
359
|
+
def __ror__(self, other):
|
|
360
|
+
return MicroSeries(super().__ror__(other), weights=self.weights)
|
|
361
|
+
|
|
362
|
+
def __rxor__(self, other):
|
|
363
|
+
return MicroSeries(super().__rxor__(other), weights=self.weights)
|
|
364
|
+
|
|
323
365
|
# comparators
|
|
324
366
|
|
|
325
367
|
def __lt__(self, other):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: microdf-python
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.4
|
|
4
4
|
Summary: Survey microdata as DataFrames.
|
|
5
5
|
Home-page: http://github.com/PSLmodels/microdf
|
|
6
6
|
Author: Max Ghenis
|
|
@@ -15,3 +15,11 @@ Provides-Extra: charts
|
|
|
15
15
|
Requires-Dist: seaborn; extra == "charts"
|
|
16
16
|
Requires-Dist: matplotlib; extra == "charts"
|
|
17
17
|
Requires-Dist: matplotlib-label-lines; extra == "charts"
|
|
18
|
+
Dynamic: author
|
|
19
|
+
Dynamic: author-email
|
|
20
|
+
Dynamic: home-page
|
|
21
|
+
Dynamic: license
|
|
22
|
+
Dynamic: license-file
|
|
23
|
+
Dynamic: provides-extra
|
|
24
|
+
Dynamic: requires-dist
|
|
25
|
+
Dynamic: summary
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|