direl-ts-tool-kit 0.8.0__tar.gz → 0.8.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: direl-ts-tool-kit
3
- Version: 0.8.0
3
+ Version: 0.8.1
4
4
  Summary: A toolbox for time series analysis and visualization.
5
5
  Home-page: https://gitlab.com/direl/direl_tool_kit
6
6
  Author: Diego Restrepo-Leal
@@ -133,6 +133,16 @@ Generates a histogram plot for a specified numerical variable.
133
133
  The plot visualizes the distribution of the data, with the Y-axis dynamically
134
134
  labeled as 'Density' or 'Count' based on the `density` parameter.
135
135
 
136
+
137
+ #### plot_data_boxplot
138
+ `plot_data_boxplot(df, variable=None, x_label="", y_label="", grid=False, notch=False)`
139
+
140
+ Generates a boxplot visualization, either for all numerical columns in the
141
+ DataFrame or for a single specified variable.
142
+
143
+ The function applies consistent styling for the boxes, outliers, and median
144
+ lines using predefined colors from 'paper_colors'.
145
+
136
146
  # Examples
137
147
  - [Example 1](https://gitlab.com/direl/direl_tool_kit/-/blob/main/example/example_01.md?ref_type=heads)
138
148
  - [Example 2](https://gitlab.com/direl/direl_tool_kit/-/blob/main/example/example_02.md?ref_type=heads)
@@ -100,6 +100,16 @@ Generates a histogram plot for a specified numerical variable.
100
100
  The plot visualizes the distribution of the data, with the Y-axis dynamically
101
101
  labeled as 'Density' or 'Count' based on the `density` parameter.
102
102
 
103
+
104
+ #### plot_data_boxplot
105
+ `plot_data_boxplot(df, variable=None, x_label="", y_label="", grid=False, notch=False)`
106
+
107
+ Generates a boxplot visualization, either for all numerical columns in the
108
+ DataFrame or for a single specified variable.
109
+
110
+ The function applies consistent styling for the boxes, outliers, and median
111
+ lines using predefined colors from 'paper_colors'.
112
+
103
113
  # Examples
104
114
  - [Example 1](https://gitlab.com/direl/direl_tool_kit/-/blob/main/example/example_01.md?ref_type=heads)
105
115
  - [Example 2](https://gitlab.com/direl/direl_tool_kit/-/blob/main/example/example_02.md?ref_type=heads)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: direl-ts-tool-kit
3
- Version: 0.8.0
3
+ Version: 0.8.1
4
4
  Summary: A toolbox for time series analysis and visualization.
5
5
  Home-page: https://gitlab.com/direl/direl_tool_kit
6
6
  Author: Diego Restrepo-Leal
@@ -133,6 +133,16 @@ Generates a histogram plot for a specified numerical variable.
133
133
  The plot visualizes the distribution of the data, with the Y-axis dynamically
134
134
  labeled as 'Density' or 'Count' based on the `density` parameter.
135
135
 
136
+
137
+ #### plot_data_boxplot
138
+ `plot_data_boxplot(df, variable=None, x_label="", y_label="", grid=False, notch=False)`
139
+
140
+ Generates a boxplot visualization, either for all numerical columns in the
141
+ DataFrame or for a single specified variable.
142
+
143
+ The function applies consistent styling for the boxes, outliers, and median
144
+ lines using predefined colors from 'paper_colors'.
145
+
136
146
  # Examples
137
147
  - [Example 1](https://gitlab.com/direl/direl_tool_kit/-/blob/main/example/example_01.md?ref_type=heads)
138
148
  - [Example 2](https://gitlab.com/direl/direl_tool_kit/-/blob/main/example/example_02.md?ref_type=heads)
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="direl-ts-tool-kit",
5
- version="0.8.0",
5
+ version="0.8.1",
6
6
  description="A toolbox for time series analysis and visualization.",
7
7
  long_description=open("README.md", encoding="utf-8").read(),
8
8
  long_description_content_type="text/markdown",