Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

time_series module #99

Open
wants to merge 29 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
79e7df4
add time_series module
MAfarrag Aug 24, 2024
165ddf9
add box plot
MAfarrag Aug 24, 2024
e0513ef
add box plot method
MAfarrag Aug 25, 2024
3a3f6a3
add missing pictures for the box plot docstring
MAfarrag Aug 25, 2024
304025b
add `calculate_whiskers`
MAfarrag Aug 25, 2024
d856aef
add `violin`
MAfarrag Aug 25, 2024
28a4ed5
correct pictures paths in docstring
MAfarrag Aug 25, 2024
152f3f1
add `raincloud` method
MAfarrag Aug 26, 2024
b21c07a
update docstring
MAfarrag Aug 26, 2024
d41b29b
create `_adjust_axes_labels` for axes labels
MAfarrag Aug 26, 2024
97f765c
rename the mean properties in the box plot
MAfarrag Aug 26, 2024
9f57366
add histogram
MAfarrag Aug 26, 2024
31ccf02
add docs for the timeseries module
MAfarrag Aug 27, 2024
52ea3e4
add docstring to the timeseries module
MAfarrag Aug 27, 2024
1c273c1
correct module name
MAfarrag Aug 27, 2024
b83e6be
update doc pictures
MAfarrag Aug 27, 2024
0efd04d
correct image name in docstring
MAfarrag Aug 27, 2024
bd967e8
correct image name in docstring
MAfarrag Aug 27, 2024
6eb5178
correct image name in docstring
MAfarrag Aug 27, 2024
1ba0f90
correct image paths in docstring
MAfarrag Aug 27, 2024
085404a
adjust the `_adjust_axes_labels` to be more generic
MAfarrag Aug 28, 2024
dd09eae
pass kwargs to the `_get_ax_fig` instead of individual parameters
MAfarrag Sep 6, 2024
bc788a6
remove un-necessary lines
MAfarrag Sep 6, 2024
e48f445
test histogram for 2d time series
MAfarrag Sep 7, 2024
fe8410c
the histogram returns the bin edges and number of values
MAfarrag Sep 7, 2024
3f8aed7
add missing docstring images
MAfarrag Sep 7, 2024
98e2b47
add xtick_labels to docstring in the `histogram`
MAfarrag Sep 7, 2024
e809a10
add type hint
MAfarrag Sep 7, 2024
673a761
add `rolling_statistics` method
MAfarrag Sep 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/source/_images/time_series/box_plot_1d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_images/time_series/box_plot_2d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_images/time_series/histogram-2d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_images/time_series/histogram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_images/time_series/raincloud_1d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_images/time_series/violin_1d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_images/time_series/violin_2d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Main Features
.. digraph:: Linking

statista -> distributions;
statista -> timeseries;
statista -> descriptors;
statista -> parameters;
statista -> sensitivity;
Expand All @@ -95,6 +96,7 @@ Main Features

Installation <installation.rst>
Distributions <distributions-tree.rst>
Time Series <timeseries-class.rst>
Sensitivity analysis <sensitivity-tree.rst>
Extreme Value Analysis <eva-class.rst>
Metrics <descriptors-module.rst>
Expand Down
2 changes: 0 additions & 2 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
.. highlight:: shell

============
Installation
============
Expand Down
9 changes: 9 additions & 0 deletions docs/source/timeseries-class.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#################
Timeseries module
#################

.. automodule:: time_series
:members: TimeSeries
:undoc-members:
:show-inheritance:
:special-members: __init__
Loading
Loading