pandas-plots 0.3.1__tar.gz → 0.7.0__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.3.1/src/pandas_plots.egg-info → pandas-plots-0.7.0}/PKG-INFO +19 -6
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/README.md +17 -2
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/pyproject.toml +2 -4
- {pandas-plots-0.3.1 → pandas-plots-0.7.0/src/pandas_plots.egg-info}/PKG-INFO +19 -6
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/src/pandas_plots.egg-info/SOURCES.txt +0 -1
- pandas-plots-0.3.1/MANIFEST.in +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/LICENSE +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/setup.cfg +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/src/pandas_plots/__init__.py +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/src/pandas_plots/sql.py +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/src/pandas_plots/tbl.py +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/src/pandas_plots/viz.py +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/src/pandas_plots.egg-info/dependency_links.txt +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/src/pandas_plots.egg-info/requires.txt +0 -0
- {pandas-plots-0.3.1 → pandas-plots-0.7.0}/src/pandas_plots.egg-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
|
|
@@ -17,9 +17,7 @@ Keywords: tables,pivot,plotly
|
|
17
17
|
Classifier: License :: OSI Approved :: MIT License
|
18
18
|
Classifier: Programming Language :: Python :: 3
|
19
19
|
Classifier: Programming Language :: Python :: 3.10
|
20
|
-
Classifier: Development Status :: 5 - Production/Stable
|
21
20
|
Classifier: Development Status :: 3 - Alpha
|
22
|
-
Classifier: Environment :: Console
|
23
21
|
Classifier: Intended Audience :: Science/Research
|
24
22
|
Classifier: Operating System :: OS Independent
|
25
23
|
Classifier: Topic :: Scientific/Engineering
|
@@ -79,7 +77,22 @@ It is subdivided into:
|
|
79
77
|
- `plot_stacked_bars()` shortcut to stacked bars 😄
|
80
78
|
- `plot_quadrants()` quickly show a 2x2 heatmap
|
81
79
|
|
82
|
-
- `sql` is added as
|
83
|
-
- `connect_sql` get data from `['mssql', 'sqlite','postgres']`
|
80
|
+
- `sql` is added as convienience wrapper for fetching data from sql databases
|
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
|
+
|
84
97
|
|
85
98
|
## dependencies
|
@@ -45,7 +45,22 @@ It is subdivided into:
|
|
45
45
|
- `plot_stacked_bars()` shortcut to stacked bars 😄
|
46
46
|
- `plot_quadrants()` quickly show a 2x2 heatmap
|
47
47
|
|
48
|
-
- `sql` is added as
|
49
|
-
- `connect_sql` get data from `['mssql', 'sqlite','postgres']`
|
48
|
+
- `sql` is added as convienience wrapper for fetching data from sql databases
|
49
|
+
- `connect_sql` get data from `['mssql', 'sqlite','postgres']`
|
50
|
+
|
51
|
+
## another example
|
52
|
+
|
53
|
+
```python
|
54
|
+
# quick and exhaustive description of any table
|
55
|
+
tbl.describe_df(df, 'taxi', top_n_uniques=5)
|
56
|
+
```
|
57
|
+

|
58
|
+
|
59
|
+
```python
|
60
|
+
# show pivoted values for selected columns
|
61
|
+
tbl.pivot_df(df[['color', 'payment', 'fare']])
|
62
|
+
```
|
63
|
+

|
64
|
+
|
50
65
|
|
51
66
|
## dependencies
|
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "pandas-plots"
|
7
|
-
version = "0.
|
7
|
+
version = "0.7.0"
|
8
8
|
requires-python = ">=3.10"
|
9
|
-
description = "A collection of helper for
|
9
|
+
description = "A collection of helper for table handling and vizualization"
|
10
10
|
readme = "README.md"
|
11
11
|
authors = [{ name = "smeisegeier", email = "dsexterDSDo@googlemail.com" }]
|
12
12
|
license = { file = "LICENSE" }
|
@@ -14,9 +14,7 @@ classifiers = [
|
|
14
14
|
"License :: OSI Approved :: MIT License",
|
15
15
|
"Programming Language :: Python :: 3",
|
16
16
|
"Programming Language :: Python :: 3.10",
|
17
|
-
'Development Status :: 5 - Production/Stable',
|
18
17
|
'Development Status :: 3 - Alpha',
|
19
|
-
'Environment :: Console',
|
20
18
|
'Intended Audience :: Science/Research',
|
21
19
|
'Operating System :: OS Independent',
|
22
20
|
'Topic :: Scientific/Engineering'
|
@@ -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
|
|
@@ -17,9 +17,7 @@ Keywords: tables,pivot,plotly
|
|
17
17
|
Classifier: License :: OSI Approved :: MIT License
|
18
18
|
Classifier: Programming Language :: Python :: 3
|
19
19
|
Classifier: Programming Language :: Python :: 3.10
|
20
|
-
Classifier: Development Status :: 5 - Production/Stable
|
21
20
|
Classifier: Development Status :: 3 - Alpha
|
22
|
-
Classifier: Environment :: Console
|
23
21
|
Classifier: Intended Audience :: Science/Research
|
24
22
|
Classifier: Operating System :: OS Independent
|
25
23
|
Classifier: Topic :: Scientific/Engineering
|
@@ -79,7 +77,22 @@ It is subdivided into:
|
|
79
77
|
- `plot_stacked_bars()` shortcut to stacked bars 😄
|
80
78
|
- `plot_quadrants()` quickly show a 2x2 heatmap
|
81
79
|
|
82
|
-
- `sql` is added as
|
83
|
-
- `connect_sql` get data from `['mssql', 'sqlite','postgres']`
|
80
|
+
- `sql` is added as convienience wrapper for fetching data from sql databases
|
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
|
+
|
84
97
|
|
85
98
|
## dependencies
|
pandas-plots-0.3.1/MANIFEST.in
DELETED
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
|