pandas-plots 0.0.2__py3-none-any.whl → 0.0.3__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.0.2.dist-info → pandas_plots-0.0.3.dist-info}/METADATA +22 -3
- pandas_plots-0.0.3.dist-info/RECORD +8 -0
- pandas_plots-0.0.2.dist-info/RECORD +0 -8
- {pandas_plots-0.0.2.dist-info → pandas_plots-0.0.3.dist-info}/LICENSE +0 -0
- {pandas_plots-0.0.2.dist-info → pandas_plots-0.0.3.dist-info}/WHEEL +0 -0
- {pandas_plots-0.0.2.dist-info → pandas_plots-0.0.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pandas-plots
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.3
|
4
4
|
Summary: A collection of helper for pandas n plots
|
5
5
|
Author-email: smeisegeier <dsexterDSDo@googlemail.com>
|
6
6
|
License: Copyright 2024 smeisegeier
|
@@ -25,16 +25,35 @@ Requires-Dist: seaborn
|
|
25
25
|
|
26
26
|
# pandas-plots
|
27
27
|
|
28
|
+
<!-- [](https://GitHub.com/Naereen/StrapDown.js/releases/) -->
|
29
|
+
<!-- [](https://GitHub.com/Naereen/StrapDown.js/commit/) -->
|
30
|
+
|
31
|
+

|
32
|
+
|
28
33
|
## quickstart
|
29
34
|
|
35
|
+
install / update package
|
36
|
+
|
30
37
|
```bash
|
31
38
|
pip install pandas-plots -U
|
32
39
|
```
|
33
40
|
|
41
|
+
include in python
|
42
|
+
|
34
43
|
```python
|
35
|
-
|
36
|
-
|
44
|
+
from pandas_plots import tbl, viz
|
45
|
+
```
|
46
|
+
|
47
|
+
example
|
48
|
+
|
49
|
+
```python
|
50
|
+
# load sample dataset from seaborn
|
51
|
+
import seaborn as sb
|
52
|
+
df = sb.load_dataset('taxis')
|
53
|
+
|
54
|
+
viz.plot_box(df['fare'], height=400, violin=True)
|
37
55
|
```
|
56
|
+

|
38
57
|
|
39
58
|
## why use pandas-plots
|
40
59
|
|
@@ -0,0 +1,8 @@
|
|
1
|
+
pandas_plots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
pandas_plots/tbl.py,sha256=7_o-Mu2nrniZd25zAtb_7IUdi7ZUnjcn9OFpBwFcVno,11500
|
3
|
+
pandas_plots/viz.py,sha256=eCDth3aFSU0_8Cj5Tax-FWM9TmPrmmNEiFuoVOB63ss,23207
|
4
|
+
pandas_plots-0.0.3.dist-info/LICENSE,sha256=6KQ5KVAAhRaB-JJKpX4cefKvRZRgI7GUPc92_2d31XY,1051
|
5
|
+
pandas_plots-0.0.3.dist-info/METADATA,sha256=CxfXjnDBAnALI1yDqMIi9SRh6hfOfJPWGmw7e2p4bt0,4379
|
6
|
+
pandas_plots-0.0.3.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
7
|
+
pandas_plots-0.0.3.dist-info/top_level.txt,sha256=XnaNuIHBqMmCeh_U7nKOYTwFue_SIA0wxuDgdPmnnSk,13
|
8
|
+
pandas_plots-0.0.3.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
pandas_plots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
pandas_plots/tbl.py,sha256=7_o-Mu2nrniZd25zAtb_7IUdi7ZUnjcn9OFpBwFcVno,11500
|
3
|
-
pandas_plots/viz.py,sha256=eCDth3aFSU0_8Cj5Tax-FWM9TmPrmmNEiFuoVOB63ss,23207
|
4
|
-
pandas_plots-0.0.2.dist-info/LICENSE,sha256=6KQ5KVAAhRaB-JJKpX4cefKvRZRgI7GUPc92_2d31XY,1051
|
5
|
-
pandas_plots-0.0.2.dist-info/METADATA,sha256=QboWQtO4kKqA2h0cwsn3q0mpNhXORbT8_wjtGprEVz4,2549
|
6
|
-
pandas_plots-0.0.2.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
7
|
-
pandas_plots-0.0.2.dist-info/top_level.txt,sha256=XnaNuIHBqMmCeh_U7nKOYTwFue_SIA0wxuDgdPmnnSk,13
|
8
|
-
pandas_plots-0.0.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|