pandas-plots 0.3.2__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.2
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
 
@@ -78,6 +78,21 @@ It is subdivided into:
78
78
  - `plot_quadrants()` quickly show a 2x2 heatmap
79
79
 
80
80
  - `sql` is added as convienience wrapper for fetching data from sql databases
81
- - `connect_sql` get data from `['mssql', 'sqlite','postgres']`
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
+
82
97
 
83
98
  ## dependencies
@@ -46,6 +46,21 @@ It is subdivided into:
46
46
  - `plot_quadrants()` quickly show a 2x2 heatmap
47
47
 
48
48
  - `sql` is added as convienience wrapper for fetching data from sql databases
49
- - `connect_sql` get data from `['mssql', 'sqlite','postgres']`
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.2"
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" }
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pandas-plots
3
- Version: 0.3.2
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
 
@@ -78,6 +78,21 @@ It is subdivided into:
78
78
  - `plot_quadrants()` quickly show a 2x2 heatmap
79
79
 
80
80
  - `sql` is added as convienience wrapper for fetching data from sql databases
81
- - `connect_sql` get data from `['mssql', 'sqlite','postgres']`
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
+
82
97
 
83
98
  ## dependencies
File without changes
File without changes