pandas-plots 0.0.2__tar.gz → 0.0.3__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.
- {pandas-plots-0.0.2/src/pandas_plots.egg-info → pandas-plots-0.0.3}/PKG-INFO +22 -3
- pandas-plots-0.0.3/README.md +50 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/pyproject.toml +1 -1
- {pandas-plots-0.0.2 → pandas-plots-0.0.3/src/pandas_plots.egg-info}/PKG-INFO +22 -3
- pandas-plots-0.0.2/README.md +0 -31
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/LICENSE +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/MANIFEST.in +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/setup.cfg +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/src/pandas_plots/__init__.py +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/src/pandas_plots/tbl.py +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/src/pandas_plots/viz.py +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/src/pandas_plots.egg-info/SOURCES.txt +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/src/pandas_plots.egg-info/dependency_links.txt +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/src/pandas_plots.egg-info/requires.txt +0 -0
- {pandas-plots-0.0.2 → pandas-plots-0.0.3}/src/pandas_plots.egg-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,50 @@
|
|
1
|
+
# pandas-plots
|
2
|
+
|
3
|
+
<!-- [](https://GitHub.com/Naereen/StrapDown.js/releases/) -->
|
4
|
+
<!-- [](https://GitHub.com/Naereen/StrapDown.js/commit/) -->
|
5
|
+
|
6
|
+

|
7
|
+
|
8
|
+
## quickstart
|
9
|
+
|
10
|
+
install / update package
|
11
|
+
|
12
|
+
```bash
|
13
|
+
pip install pandas-plots -U
|
14
|
+
```
|
15
|
+
|
16
|
+
include in python
|
17
|
+
|
18
|
+
```python
|
19
|
+
from pandas_plots import tbl, viz
|
20
|
+
```
|
21
|
+
|
22
|
+
example
|
23
|
+
|
24
|
+
```python
|
25
|
+
# load sample dataset from seaborn
|
26
|
+
import seaborn as sb
|
27
|
+
df = sb.load_dataset('taxis')
|
28
|
+
|
29
|
+
viz.plot_box(df['fare'], height=400, violin=True)
|
30
|
+
```
|
31
|
+

|
32
|
+
|
33
|
+
## why use pandas-plots
|
34
|
+
|
35
|
+
`pandas-plots` is a package to help you examine and visualize data that are organized in a pandas DataFrame. It provides a high level api to pandas / plotly with some selected functions.
|
36
|
+
|
37
|
+
It is subdivided into:
|
38
|
+
|
39
|
+
- `tbl` utilities for table descriptions
|
40
|
+
- `describe_df()` an alternative version of pandas `describe()` function
|
41
|
+
- `pivot_df()` gets a pivot table of a 3 column dataframe
|
42
|
+
|
43
|
+
- `viz` utilities for plotly visualizations
|
44
|
+
- `plot_box()` auto annotated boxplot w/ violin option
|
45
|
+
- `plot_boxes()` multiple boxplots _(annotation is experimental)_
|
46
|
+
- `plots_bars()` a standardized bar plot
|
47
|
+
- `plot_stacked_bars()` shortcut to stacked bars 😄
|
48
|
+
- `plot_quadrants()` quickly show a 2x2 heatmap
|
49
|
+
|
50
|
+
## dependencies
|
@@ -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
|
|
pandas-plots-0.0.2/README.md
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
# pandas-plots
|
2
|
-
|
3
|
-
## quickstart
|
4
|
-
|
5
|
-
```bash
|
6
|
-
pip install pandas-plots -U
|
7
|
-
```
|
8
|
-
|
9
|
-
```python
|
10
|
-
import pandas_plots as pp
|
11
|
-
pp.pandas.describe_df()
|
12
|
-
```
|
13
|
-
|
14
|
-
## why use pandas-plots
|
15
|
-
|
16
|
-
`pandas-plots` is a package to help you examine and visualize data that are organized in a pandas DataFrame. It provides a high level api to pandas / plotly with some selected functions.
|
17
|
-
|
18
|
-
It is subdivided into:
|
19
|
-
|
20
|
-
- `tbl` utilities for table descriptions
|
21
|
-
- `describe_df()` an alternative version of pandas `describe()` function
|
22
|
-
- `pivot_df()` gets a pivot table of a 3 column dataframe
|
23
|
-
|
24
|
-
- `viz` utilities for plotly visualizations
|
25
|
-
- `plot_box()` auto annotated boxplot w/ violin option
|
26
|
-
- `plot_boxes()` multiple boxplots _(annotation is experimental)_
|
27
|
-
- `plots_bars()` a standardized bar plot
|
28
|
-
- `plot_stacked_bars()` shortcut to stacked bars 😄
|
29
|
-
- `plot_quadrants()` quickly show a 2x2 heatmap
|
30
|
-
|
31
|
-
## dependencies
|
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
|