pandas-plots 0.7.0__tar.gz → 0.7.1__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.7.0/src/pandas_plots.egg-info → pandas-plots-0.7.1}/PKG-INFO +5 -4
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/README.md +3 -2
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/pyproject.toml +2 -2
- {pandas-plots-0.7.0 → pandas-plots-0.7.1/src/pandas_plots.egg-info}/PKG-INFO +5 -4
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/LICENSE +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/setup.cfg +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/src/pandas_plots/__init__.py +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/src/pandas_plots/sql.py +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/src/pandas_plots/tbl.py +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/src/pandas_plots/viz.py +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/src/pandas_plots.egg-info/SOURCES.txt +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/src/pandas_plots.egg-info/dependency_links.txt +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/src/pandas_plots.egg-info/requires.txt +0 -0
- {pandas-plots-0.7.0 → pandas-plots-0.7.1}/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.7.
|
3
|
+
Version: 0.7.1
|
4
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
|
@@ -17,7 +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 ::
|
20
|
+
Classifier: Development Status :: 4 - Beta
|
21
21
|
Classifier: Intended Audience :: Science/Research
|
22
22
|
Classifier: Operating System :: OS Independent
|
23
23
|
Classifier: Topic :: Scientific/Engineering
|
@@ -86,13 +86,14 @@ It is subdivided into:
|
|
86
86
|
# quick and exhaustive description of any table
|
87
87
|
tbl.describe_df(df, 'taxi', top_n_uniques=5)
|
88
88
|
```
|
89
|
-
|
89
|
+
|
90
|
+

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

|
96
96
|
|
97
|
+

|
97
98
|
|
98
99
|
## dependencies
|
@@ -54,13 +54,14 @@ It is subdivided into:
|
|
54
54
|
# quick and exhaustive description of any table
|
55
55
|
tbl.describe_df(df, 'taxi', top_n_uniques=5)
|
56
56
|
```
|
57
|
-
|
57
|
+
|
58
|
+

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

|
64
64
|
|
65
|
+

|
65
66
|
|
66
67
|
## dependencies
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "pandas-plots"
|
7
|
-
version = "0.7.
|
7
|
+
version = "0.7.1"
|
8
8
|
requires-python = ">=3.10"
|
9
9
|
description = "A collection of helper for table handling and vizualization"
|
10
10
|
readme = "README.md"
|
@@ -14,7 +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 ::
|
17
|
+
'Development Status :: 4 - Beta',
|
18
18
|
'Intended Audience :: Science/Research',
|
19
19
|
'Operating System :: OS Independent',
|
20
20
|
'Topic :: Scientific/Engineering'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pandas-plots
|
3
|
-
Version: 0.7.
|
3
|
+
Version: 0.7.1
|
4
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
|
@@ -17,7 +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 ::
|
20
|
+
Classifier: Development Status :: 4 - Beta
|
21
21
|
Classifier: Intended Audience :: Science/Research
|
22
22
|
Classifier: Operating System :: OS Independent
|
23
23
|
Classifier: Topic :: Scientific/Engineering
|
@@ -86,13 +86,14 @@ It is subdivided into:
|
|
86
86
|
# quick and exhaustive description of any table
|
87
87
|
tbl.describe_df(df, 'taxi', top_n_uniques=5)
|
88
88
|
```
|
89
|
-
|
89
|
+
|
90
|
+

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

|
96
96
|
|
97
|
+

|
97
98
|
|
98
99
|
## 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
|