pandas-plots 0.11.3__tar.gz → 0.11.4__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.11.3/src/pandas_plots.egg-info → pandas_plots-0.11.4}/PKG-INFO +1 -2
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/README.md +0 -1
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/setup.cfg +1 -1
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/src/pandas_plots/tbl.py +3 -2
- {pandas_plots-0.11.3 → pandas_plots-0.11.4/src/pandas_plots.egg-info}/PKG-INFO +1 -2
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/LICENSE +0 -0
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/pyproject.toml +0 -0
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/src/pandas_plots/hlp.py +0 -0
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/src/pandas_plots/pls.py +0 -0
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/src/pandas_plots/ven.py +0 -0
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/src/pandas_plots.egg-info/SOURCES.txt +0 -0
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/src/pandas_plots.egg-info/dependency_links.txt +0 -0
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/src/pandas_plots.egg-info/requires.txt +0 -0
- {pandas_plots-0.11.3 → pandas_plots-0.11.4}/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.11.
|
3
|
+
Version: 0.11.4
|
4
4
|
Summary: A collection of helper for table handling and vizualization
|
5
5
|
Home-page: https://github.com/smeisegeier/pandas-plots
|
6
6
|
Author: smeisegeier
|
@@ -78,7 +78,6 @@ tbl.show_num_df(
|
|
78
78
|
- 🌟`show_num_df()` displays a table as styled version with additional information
|
79
79
|
- `describe_df()` an alternative version of pandas `describe()` function
|
80
80
|
- `pivot_df()` gets a pivot table of a 3 column dataframe
|
81
|
-
- >_⚠️ `pivot_df()` is depricated and wont get further updates. Its features are well covered in standard `pd.pivot_table()`_
|
82
81
|
|
83
82
|
- `pls` for plotly visualizations
|
84
83
|
- `plot_box()` auto annotated boxplot w/ violin option
|
@@ -48,7 +48,6 @@ tbl.show_num_df(
|
|
48
48
|
- 🌟`show_num_df()` displays a table as styled version with additional information
|
49
49
|
- `describe_df()` an alternative version of pandas `describe()` function
|
50
50
|
- `pivot_df()` gets a pivot table of a 3 column dataframe
|
51
|
-
- >_⚠️ `pivot_df()` is depricated and wont get further updates. Its features are well covered in standard `pd.pivot_table()`_
|
52
51
|
|
53
52
|
- `pls` for plotly visualizations
|
54
53
|
- `plot_box()` auto annotated boxplot w/ violin option
|
@@ -226,8 +226,9 @@ def pivot_df(
|
|
226
226
|
kpi_shape: Literal["squad", "circle"] = "squad",
|
227
227
|
) -> pd.DataFrame:
|
228
228
|
"""
|
229
|
-
|
230
|
-
|
229
|
+
A function to pivot a DataFrame based on specified parameters hand over to the *show_num_df* function.
|
230
|
+
It does not provide much added value since the built-in pivot_table function does the same thing.
|
231
|
+
However, it can be useful in certain situations (applying top_n_index and top_n_columns).
|
231
232
|
|
232
233
|
Args:
|
233
234
|
df (pd.DataFrame): The input DataFrame to be pivoted.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pandas-plots
|
3
|
-
Version: 0.11.
|
3
|
+
Version: 0.11.4
|
4
4
|
Summary: A collection of helper for table handling and vizualization
|
5
5
|
Home-page: https://github.com/smeisegeier/pandas-plots
|
6
6
|
Author: smeisegeier
|
@@ -78,7 +78,6 @@ tbl.show_num_df(
|
|
78
78
|
- 🌟`show_num_df()` displays a table as styled version with additional information
|
79
79
|
- `describe_df()` an alternative version of pandas `describe()` function
|
80
80
|
- `pivot_df()` gets a pivot table of a 3 column dataframe
|
81
|
-
- >_⚠️ `pivot_df()` is depricated and wont get further updates. Its features are well covered in standard `pd.pivot_table()`_
|
82
81
|
|
83
82
|
- `pls` for plotly visualizations
|
84
83
|
- `plot_box()` auto annotated boxplot w/ violin option
|
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
|