pandas-plots 0.3.2__py3-none-any.whl → 0.7.0__py3-none-any.whl
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.
- {pandas_plots-0.3.2.dist-info → pandas_plots-0.7.0.dist-info}/METADATA +18 -3
- {pandas_plots-0.3.2.dist-info → pandas_plots-0.7.0.dist-info}/RECORD +5 -5
- {pandas_plots-0.3.2.dist-info → pandas_plots-0.7.0.dist-info}/LICENSE +0 -0
- {pandas_plots-0.3.2.dist-info → pandas_plots-0.7.0.dist-info}/WHEEL +0 -0
- {pandas_plots-0.3.2.dist-info → pandas_plots-0.7.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pandas-plots
|
3
|
-
Version: 0.
|
4
|
-
Summary: A collection of helper for
|
3
|
+
Version: 0.7.0
|
4
|
+
Summary: A collection of helper for table handling and vizualization
|
5
5
|
Author-email: smeisegeier <dsexterDSDo@googlemail.com>
|
6
6
|
License: Copyright 2024 smeisegeier
|
7
7
|
|
@@ -78,6 +78,21 @@ It is subdivided into:
|
|
78
78
|
- `plot_quadrants()` quickly show a 2x2 heatmap
|
79
79
|
|
80
80
|
- `sql` is added as convienience wrapper for fetching data from sql databases
|
81
|
-
- `connect_sql` get data from `['mssql', 'sqlite','postgres']`
|
81
|
+
- `connect_sql` get data from `['mssql', 'sqlite','postgres']`
|
82
|
+
|
83
|
+
## another example
|
84
|
+
|
85
|
+
```python
|
86
|
+
# quick and exhaustive description of any table
|
87
|
+
tbl.describe_df(df, 'taxi', top_n_uniques=5)
|
88
|
+
```
|
89
|
+

|
90
|
+
|
91
|
+
```python
|
92
|
+
# show pivoted values for selected columns
|
93
|
+
tbl.pivot_df(df[['color', 'payment', 'fare']])
|
94
|
+
```
|
95
|
+

|
96
|
+
|
82
97
|
|
83
98
|
## dependencies
|
@@ -2,8 +2,8 @@ pandas_plots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
pandas_plots/sql.py,sha256=SHrmwhmzq0QYygvaoKwv7neiwf_Rv87VmdUkADYPdR8,2485
|
3
3
|
pandas_plots/tbl.py,sha256=7_o-Mu2nrniZd25zAtb_7IUdi7ZUnjcn9OFpBwFcVno,11500
|
4
4
|
pandas_plots/viz.py,sha256=eCDth3aFSU0_8Cj5Tax-FWM9TmPrmmNEiFuoVOB63ss,23207
|
5
|
-
pandas_plots-0.
|
6
|
-
pandas_plots-0.
|
7
|
-
pandas_plots-0.
|
8
|
-
pandas_plots-0.
|
9
|
-
pandas_plots-0.
|
5
|
+
pandas_plots-0.7.0.dist-info/LICENSE,sha256=6KQ5KVAAhRaB-JJKpX4cefKvRZRgI7GUPc92_2d31XY,1051
|
6
|
+
pandas_plots-0.7.0.dist-info/METADATA,sha256=hcwX-F4G9eRszkXMjDU4G7Qn-oKjR_js-VKbBpCc3FI,5229
|
7
|
+
pandas_plots-0.7.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
8
|
+
pandas_plots-0.7.0.dist-info/top_level.txt,sha256=XnaNuIHBqMmCeh_U7nKOYTwFue_SIA0wxuDgdPmnnSk,13
|
9
|
+
pandas_plots-0.7.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|