We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 178030d commit dd0ac83Copy full SHA for dd0ac83
src/statista/time_series.py
@@ -737,7 +737,11 @@ def histogram(
737
738
def density(self, **kwargs) -> Tuple[Figure, Axes]:
739
"""
740
- Plots a density plot of the time series data.
+ Plots a density (KDE) plot of the time series data.
741
+
742
+ - KDE is a non-parametric method for estimating the probability density function of a random variable.
743
+ - It provides a smoothed estimate of the underlying probability distribution based on observed data points
744
+ - This function uses Gaussian kernels and includes automatic bandwidth determination
745
746
Args:
747
**kwargs: dict, optional
0 commit comments