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.
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pandas-plots
3
- Version: 0.3.1
4
- Summary: A collection of helper for pandas n plots
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 convienient wrapper for fetching data from sql databases
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
+ ![describe_df](img/2024-02-14-20-49-00.png)
90
+
91
+ ```python
92
+ # show pivoted values for selected columns
93
+ tbl.pivot_df(df[['color', 'payment', 'fare']])
94
+ ```
95
+ ![pivot_df](img/2024-02-14-20-45-45.png)
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 convienient wrapper for fetching data from sql databases
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
+ ![describe_df](img/2024-02-14-20-49-00.png)
58
+
59
+ ```python
60
+ # show pivoted values for selected columns
61
+ tbl.pivot_df(df[['color', 'payment', 'fare']])
62
+ ```
63
+ ![pivot_df](img/2024-02-14-20-45-45.png)
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.3.1"
7
+ version = "0.7.0"
8
8
  requires-python = ">=3.10"
9
- description = "A collection of helper for pandas n plots"
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.3.1
4
- Summary: A collection of helper for pandas n plots
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 convienient wrapper for fetching data from sql databases
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
+ ![describe_df](img/2024-02-14-20-49-00.png)
90
+
91
+ ```python
92
+ # show pivoted values for selected columns
93
+ tbl.pivot_df(df[['color', 'payment', 'fare']])
94
+ ```
95
+ ![pivot_df](img/2024-02-14-20-45-45.png)
96
+
84
97
 
85
98
  ## dependencies
@@ -1,5 +1,4 @@
1
1
  LICENSE
2
- MANIFEST.in
3
2
  README.md
4
3
  pyproject.toml
5
4
  src/pandas_plots/__init__.py
File without changes
File without changes
File without changes