Skip to content

Gumbel Distribution#

statista.distributions.Gumbel #

Bases: AbstractDistribution

Gumbel distribution (Maximum - Right Skewed) for extreme value analysis.

The Gumbel distribution is used to model the distribution of the maximum (or the minimum) of a number of samples of various distributions. It is commonly used in hydrology, meteorology, and other fields to model extreme events like floods, rainfall, and wind speeds.

The Gumbel distribution is a special case of the Generalized Extreme Value (GEV) distribution with shape parameter ΞΎ = 0.

Attributes:

Name Type Description
_data ndarray

The data array used for distribution calculations.

_parameters dict[str, float]

Distribution parameters (loc and scale).

  • The probability density function (PDF) of the Gumbel distribution is:

    \[ f(x; \zeta, \delta) = \frac{1}{\delta} \exp\left(-\frac{x - \zeta}{\delta}\right) \exp\left(-\exp\left(-\frac{x - \zeta}{\delta}\right)\right) \]

    Where \(\zeta\) (zeta) is the location parameter and \(\delta\) (delta) is the scale parameter.

  • The cumulative distribution function (CDF) is:

    \[ F(x; \zeta, \delta) = \exp\left(-\exp\left(-\frac{x - \zeta}{\delta}\right)\right) \]
  • The location parameter \(\zeta\) shifts the distribution along the x-axis, determining the mode (peak) of the distribution. It can range from negative to positive infinity.

  • The scale parameter \(\delta\) controls the spread of the distribution. A larger scale parameter results in a wider distribution. It must always be positive.
Source code in src\statista\distributions\gumbel.py
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
class Gumbel(AbstractDistribution):
    """Gumbel distribution (Maximum - Right Skewed) for extreme value analysis.

    The Gumbel distribution is used to model the distribution of the maximum (or the minimum)
    of a number of samples of various distributions. It is commonly used in hydrology,
    meteorology, and other fields to model extreme events like floods, rainfall, and wind speeds.

    The Gumbel distribution is a special case of the Generalized Extreme Value (GEV)
    distribution with shape parameter ΞΎ = 0.

    Attributes:
        _data (np.ndarray): The data array used for distribution calculations.
        _parameters (dict[str, float]): Distribution parameters (loc and scale).

    - The probability density function (PDF) of the Gumbel distribution is:

        $$
        f(x; \\zeta, \\delta) = \\frac{1}{\\delta}
        \\exp\\left(-\\frac{x - \\zeta}{\\delta}\\right)
        \\exp\\left(-\\exp\\left(-\\frac{x - \\zeta}{\\delta}\\right)\\right)
        $$

        Where \\(\\zeta\\) (zeta) is the location parameter and \\(\\delta\\) (delta)
        is the scale parameter.

    - The cumulative distribution function (CDF) is:

        $$
        F(x; \\zeta, \\delta) = \\exp\\left(-\\exp\\left(-\\frac{x - \\zeta}{\\delta}\\right)\\right)
        $$

    - The location parameter \\(\\zeta\\) shifts the distribution along the x-axis, determining
      the mode (peak) of the distribution. It can range from negative to positive infinity.
    - The scale parameter \\(\\delta\\) controls the spread of the distribution. A larger scale
      parameter results in a wider distribution. It must always be positive.
    """

    def __init__(
        self,
        data: list | np.ndarray | None = None,
        parameters: dict[str, float] = None,
    ):
        """Initialize a Gumbel distribution with data or parameters.

        Args:
            data:
                Data time series as a list or numpy array.
            parameters:
                - loc (numeric):
                    Location parameter of the Gumbel distribution
                - scale (numeric):
                    Scale parameter of the Gumbel distribution (must be positive)
                ```python
                {"loc": 0.0, "scale": 1.0}
                ```

        Raises:
            ValueError: If neither data nor parameters are provided.
            TypeError: If data is not a list or numpy array, or if parameters is not a dictionary.

        Examples:
            - Import necessary libraries
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel

                ```
            - Load sample data:
                ```python
                >>> data = np.loadtxt("examples/data/gumbel.txt")

                ```
            - Initialize with data only
                ```python
                >>> gumbel_dist = Gumbel(data)

                ```
            - Initialize with both data and parameters
                ```python
                >>> parameters = {"loc": 0, "scale": 1}
                >>> gumbel_dist = Gumbel(data, parameters)

                ```
            - Initialize with parameters only
                ```python
                >>> gumbel_dist = Gumbel(parameters={"loc": 0, "scale": 1})

                ```
        """
        super().__init__(data, parameters)

    @staticmethod
    def _pdf_eq(
        data: list | np.ndarray, parameters: dict[str, float | Any]
    ) -> np.ndarray:
        """Calculate the probability density function (PDF) values for Gumbel distribution.

        This method implements the Gumbel PDF equation:
        f(x; ΞΆ, Ξ΄) = (1/Ξ΄) * exp(-(x-ΞΆ)/Ξ΄) * exp(-exp(-(x-ΞΆ)/Ξ΄))

        Args:
            data:
                Data points for which to calculate PDF values.
            parameters:
                Dictionary of distribution parameters.
                Must contain:
                    - "loc": Location parameter (ΞΆ)
                    - "scale": Scale parameter (Ξ΄), must be positive

        Returns:
            Numpy array containing the PDF values for each data point.

        Raises:
            ValueError: If the scale parameter is negative or zero.

        old code:
        ```python
        >>> ts = np.array([1, 2, 3, 4, 5]) # any value
        >>> loc = 0.0 # any value
        >>> scale = 1.0 # any value
        >>> z = (ts - loc) / scale
        >>> pdf = (1.0 / scale) * (np.exp(-(z + (np.exp(-z)))))

        ```
        """
        loc = parameters.get("loc")
        scale = parameters.get("scale")
        if scale is None or scale <= 0:
            raise ValueError(SCALE_PARAMETER_ERROR)

        pdf = gumbel_r.pdf(data, loc=loc, scale=scale)
        return pdf

    def pdf(  # type: ignore[override]
        self,
        plot_figure: bool = False,
        parameters: dict[str, Any] = None,
        data: list[float] | np.ndarray | None = None,
        *args: Any,
        **kwargs: Any,
    ) -> np.ndarray | tuple[np.ndarray, Figure, Any]:
        """Calculate the probability density function (PDF) values for Gumbel distribution.

        This method calculates the PDF values for the given data using the specified
        Gumbel distribution parameters. It can also generate a plot of the PDF.

        Args:
            plot_figure:
                Whether to generate a plot of the PDF. Default is False.
            parameters:
                    - loc (Numberic):
                        Location parameter of the Gumbel distribution
                    - scale (Numberic):
                        Scale parameter of the Gumbel distribution (must be positive)
                    ```python
                    {"loc": 0.0, "scale": 1.0}
                    ```
                    If None, uses the parameters provided during initialization.
            data:
                Data points for which to calculate PDF values. If None, uses the data provided during initialization.
            *args:
                Variable length argument list to pass to the parent class method.
            **kwargs:
                Arbitrary keyword arguments to pass to the plotting function.
                the possible keyword arguments are:
                    - fig_size:
                        Size of the figure as a tuple (width, height). Default is (6, 5).
                    - xlabel:
                        Label for the x-axis. Default is "Actual data".
                    - ylabel:
                        Label for the y-axis. Default is "pdf".
                    - fontsize:
                        Font size for plot labels. Default is 15.

        Returns:
            If plot_figure is False:
                Numpy array containing the PDF values for each data point.
            If plot_figure is True:
                Tuple containing:
                - Numpy array of PDF values
                - Figure object
                - Axes object

        Examples:
            - Import libraries:
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel

                ```
            - Load sample data:
                ```python
                >>> data = np.loadtxt("examples/data/gumbel.txt")

                ```
            - Calculate PDF values with default parameters:
                ```python
                >>> gumbel_dist = Gumbel(data)
                >>> gumbel_dist.fit_model() # doctest: +SKIP
                -----KS Test--------
                Statistic = 0.019
                Accept Hypothesis
                P value = 0.9937026761524456
                {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
                >>> pdf_values = gumbel_dist.pdf() # doctest: +SKIP

                ```
            - Generate a PDF plot:
                ```python
                >>> pdf_values, fig, ax = gumbel_dist.pdf(
                ...     plot_figure=True,
                ...     xlabel="Values",
                ...     ylabel="Density",
                ...     fig_size=(8, 6)
                ... ) # doctest: +SKIP

                ```
                ![gamma-pdf](./../../_images/distributions/gamma-pdf-1.png)

            - Calculate PDF with custom parameters:
                ```python
                >>> parameters = {'loc': 0, 'scale': 1}
                >>> pdf_custom = gumbel_dist.pdf(parameters=parameters)
                >>> print(pdf_custom) #doctest: +SKIP
                array([5.44630532e-02, 1.55313724e-01, 3.29857975e-01, 7.01082330e-02,
                       3.54572987e-01, 1.46804327e-01, 3.36843753e-01, 1.01491310e-01,
                       2.38861650e-01, 3.42034071e-01, 2.59606975e-01, 3.33403275e-01,
                       3.52075676e-01, 1.24617619e-01, 6.37994991e-02, 3.67871923e-01,
                       ...
                       2.12529308e-01, 3.13383427e-01, 3.62783762e-01, 4.09957082e-02,
                       2.61395400e-01, 2.58511435e-01, 1.94640967e-01, 3.37392659e-01])
                ```
        """
        result = super().pdf(
            parameters=parameters,
            data=data,
            plot_figure=plot_figure,
            *args,
            **kwargs,
        )  # type: ignore[misc]
        return result

    def random(
        self,
        size: int,
        parameters: dict[str, float | Any] = None,
    ) -> tuple[np.ndarray, Figure, Any] | np.ndarray:
        """Generate random samples from the Gumbel distribution.

        This method generates random samples following the Gumbel distribution
        with the specified parameters.

        Args:
            size:
                Number of random samples to generate.
            parameters:
                    - loc (Numberic):
                        Location parameter of the Gumbel distribution
                    - scale (Numberic):
                        Scale parameter of the Gumbel distribution (must be positive)
                    ```python
                    {"loc": 0.0, "scale": 1.0}
                    ```
                    If None, uses the parameters provided during initialization.

        Returns:
            Numpy array containing the generated random samples.

        Raises:
            ValueError: If the parameters are not provided and not available from initialization.

        Examples:
            - import the required modules and generate random samples:
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel
                >>> parameters = {'loc': 0, 'scale': 1}
                >>> gumbel_dist = Gumbel(parameters=parameters)
                >>> random_data = gumbel_dist.random(1000)

                ```
            - Analyze the generated data:
                - Plot the PDF of the random data:
                ```python
                >>> _ = gumbel_dist.pdf(data=random_data, plot_figure=True, xlabel="Random data")

                ```
                ![gamma-pdf](./../../_images/distributions/gamma-random-1.png)

                - Plot the CDF of the random data:
                    ```python
                    >>> _ = gumbel_dist.cdf(data=random_data, plot_figure=True, xlabel="Random data")

                    ```
                    ![gamma-cdf](./../../_images/distributions/gamma-cdf-1.png)

            - Verify the parameters by fitting the model to the random data
                ```python
                >>> gumbel_dist = Gumbel(data=random_data)
                >>> fitted_params = gumbel_dist.fit_model() #doctest: +SKIP
                -----KS Test--------
                Statistic = 0.018
                Accept Hypothesis
                P value = 0.9969602438295625
                >>> print(f"Fitted parameters: {fitted_params}") #doctest: +SKIP
                Fitted parameters: {'loc': np.float64(-0.010212105435018243), 'scale': 1.010287499893525}

                ```
            - Should be close to the original parameters {'loc': 0, 'scale': 1}
            ```
        """
        # if no parameters are provided, take the parameters provided in the class initialization.
        if parameters is None:
            parameters = self.parameters

        loc = parameters.get("loc")
        scale = parameters.get("scale")
        if scale is None or scale <= 0:
            raise ValueError(SCALE_PARAMETER_ERROR)

        random_data = gumbel_r.rvs(loc=loc, scale=scale, size=size)
        return random_data

    @staticmethod
    def _cdf_eq(
        data: list | np.ndarray, parameters: dict[str, float | Any]
    ) -> np.ndarray:
        """Calculate the cumulative distribution function (CDF) values for Gumbel distribution.

        This method implements the Gumbel CDF equation:
        F(x; ΞΆ, Ξ΄) = exp(-exp(-(x-ΞΆ)/Ξ΄))

        Args:
            data: Data points for which to calculate CDF values.
            parameters: Dictionary of distribution parameters.
                Must contain:
                - "loc": Location parameter (ΞΆ)
                - "scale": Scale parameter (Ξ΄), must be positive

        Returns:
            Numpy array containing the CDF values for each data point.

        Raises:
            ValueError: If the scale parameter is negative or zero.

        old code:
        ```python
        >>> ts = np.array([1, 2, 3, 4, 5]) # any value
        >>> loc = 0.0 # any value
        >>> scale = 1.0 # any value
        >>> z = (ts - loc) / scale
        >>> cdf = np.exp(-np.exp(-z))

        ```
        """
        loc = parameters.get("loc")
        scale = parameters.get("scale")
        if scale is None or scale <= 0:
            raise ValueError(SCALE_PARAMETER_ERROR)

        cdf = gumbel_r.cdf(data, loc=loc, scale=scale)
        return cdf

    def cdf(  # type: ignore[override]
        self,
        plot_figure: bool = False,
        parameters: dict[str, Any] = None,
        data: list[float] | np.ndarray | None = None,
        *args: Any,
        **kwargs: Any,
    ) -> (
        np.ndarray | tuple[np.ndarray, Figure, Axes]
    ):  # pylint: disable=arguments-differ
        """Calculate the cumulative distribution function (CDF) values for Gumbel distribution.

        This method calculates the CDF values for the given data using the specified
        Gumbel distribution parameters. It can also generate a plot of the CDF.

        Args:
            plot_figure:
                Whether to generate a plot of the CDF. Default is False.
            parameters:
                - loc:
                    Location parameter of the Gumbel distribution
                - scale:
                    Scale parameter of the Gumbel distribution (must be positive)
                ```python
                {"loc": 0.0, "scale": 1.0}
                ```
                If None, uses the parameters provided during initialization.
            data:
                Data points for which to calculate CDF values. If None, uses the data provided during initialization.
            *args:
                Variable length argument list to pass to the parent class method.
            **kwargs:
                - fig_size:
                    Size of the figure as a tuple (width, height). Default is (6, 5).
                - xlabel:
                    Label for the x-axis. Default is "Actual data".
                - ylabel:
                    Label for the y-axis. Default is "cdf".
                - fontsize:
                    Font size for plot labels. Default is 15.

        Returns:
            If plot_figure is False:
                Numpy array containing the CDF values for each data point.
            If plot_figure is True:
                Tuple containing:
                - Numpy array of CDF values
                - Figure object
                - Axes object

        Examples:
            -  Load sample data:
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel
                >>> data = np.loadtxt("examples/data/gumbel.txt")

                ```
            -  Calculate CDF values with default parameters:
                ```python
                >>> gumbel_dist = Gumbel(data)
                >>> gumbel_dist.fit_model() # doctest: +SKIP
                -----KS Test--------
                Statistic = 0.019
                Accept Hypothesis
                P value = 0.9937026761524456
                {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
                >>> cdf_values = gumbel_dist.cdf() # doctest: +SKIP

                ```
            -  Generate a CDF plot:
                ```python
                >>> cdf_values, fig, ax = gumbel_dist.cdf(
                ...     plot_figure=True,
                ...     xlabel="Values",
                ...     ylabel="Probability",
                ...     fig_size=(8, 6)
                ... ) # doctest: +SKIP

                ```
                ![gamma-cdf](./../../_images/distributions/gamma-cdf-2.png)

            -  Calculate CDF with custom parameters:
                ```python
                >>> parameters = {'loc': 0, 'scale': 1}
                >>> cdf_custom = gumbel_dist.cdf(parameters=parameters)

                ```
            -  Calculate exceedance probability (1-CDF):
                ```python
                >>> exceedance_prob = 1 - cdf_values # doctest: +SKIP

                ```
            ```
        """
        result = super().cdf(
            parameters=parameters,
            data=data,
            plot_figure=plot_figure,
            *args,
            **kwargs,
        )  # type: ignore[misc]
        return result

    def return_period(
        self,
        *,
        data: bool | list[float] | None = None,
        parameters: dict[str, float | Any] = None,
    ) -> np.ndarray:
        """Calculate return periods for given data values.

        The return period is the average time between events of a given magnitude.
        It is calculated as 1/(1-F(x)), where F(x) is the cumulative distribution function.

        Args:
            data:
                Values for which to calculate return periods. Can be a single value, list, or array.
                If None, uses the data provided during initialization.
            parameters:
                - loc (Numeric):
                    Location parameter of the Gumbel distribution
                - scale (Numeric):
                    Scale parameter of the Gumbel distribution (must be positive)
                ```
                {"loc": 0.0, "scale": 1.0}
                ```
                If None, uses the parameters provided during initialization.

        Returns:
            np.ndarray:
                Return periods corresponding to the input data values.
                - If input is a single value, returns a single value.
                - If input is a list or array, returns an array of return periods.

        Examples:
            - Import necessary libraries:
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel

                ```
            -  Calculate return periods for specific values
                ```python
                >>> data = np.loadtxt("examples/data/gumbel.txt")
                >>> gumbel_dist = Gumbel(data=data,parameters={"loc": 0, "scale": 1})
                >>> return_periods = gumbel_dist.return_period()

                ```
            -  Calculate the 100-year return level:
                - First, find the CDF value corresponding to a 100-year return period
                - F(x) = 1 - 1/T, where T is the return period
                ```python
                >>> cdf_value = 1 - 1/100

                ```
            - Then, find the quantile corresponding to this CDF value:
                ```python
                >>> return_level_100yr = gumbel_dist.inverse_cdf([cdf_value], parameters={"loc": 0, "scale": 1})[0]
                >>> print(f"100-year return level: {return_level_100yr:.4f}")
                100-year return level: 4.6001

                ```
        """
        if data is None:
            ts: Any = self.data
        else:
            ts = data

        # if no parameters are provided, take the parameters provided in the class initialization.
        if parameters is None:
            parameters = self.parameters

        cdf: np.ndarray = self.cdf(parameters=parameters, data=ts)  # type: ignore[assignment]

        rp = 1 / (1 - cdf)

        return rp

    @staticmethod
    def truncated_distribution(opt_parameters: list[float], data: list[float]) -> float:
        """Calculate a negative log-likelihood for a truncated Gumbel distribution.

        This function calculates the negative log-likelihood of a Gumbel distribution
        that is truncated (i.e., the data only includes values above a certain threshold).
        It is used as an objective function for parameter optimization when fitting
        a truncated Gumbel distribution to data.

        This approach is useful when the dataset is incomplete or when data is only
        available above a certain threshold, a common scenario in environmental sciences,
        finance, and other fields dealing with extremes.

        Args:
            opt_parameters:
                List of parameters to optimize:
                    - opt_parameters[0]: Threshold value
                    - opt_parameters[1]: Location parameter (loc)
                    - opt_parameters[2]: Scale parameter (scale)
            data:
                Data points to fit the truncated distribution to.

        Returns:
            Negative log-likelihood value. Lower values indicate better fit.

        Notes:
            The negative log-likelihood is calculated as the sum of two components:
                - L1: Log-likelihood for values below the threshold
                - L2: Log-likelihood for values above the threshold

        Reference:
            https://stackoverflow.com/questions/23217484/how-to-find-parameters-of-gumbels-distribution-using-scipy-optimize

        Examples:
            - import the required modules and generate sample data:
                ```python
                >>> import numpy as np
                >>> from scipy.optimize import minimize
                >>> from statista.distributions import Gumbel
                >>> data = np.random.gumbel(loc=10, scale=2, size=1000)

                ```
            - Initial parameter guess [threshold, loc, scale]:
                ```python
                >>> initial_params = [5.0, 8.0, 1.5]

                ```
            - Optimize parameters:
                ```python
                >>> result = minimize(
                ...     Gumbel.truncated_distribution,
                ...     initial_params,
                ...     args=(data,),
                ...     method='Nelder-Mead'
                ... )

                ```
            - Extract optimized parameters:
                ```python
                >>> threshold, loc, scale = result.x
                >>> print(f"Optimized parameters: threshold={threshold}, loc={loc}, scale={scale}")
                Optimized parameters: threshold=4.0, loc=9.599999999999994, scale=1.5

                ```
        """
        threshold = opt_parameters[0]
        loc = opt_parameters[1]
        scale = opt_parameters[2]

        non_truncated_data = data[data < threshold]  # type: ignore[operator]
        nx2 = len(data[data >= threshold])  # type: ignore[arg-type, operator]
        # pdf with a scaled pdf
        # L1 is pdf based
        parameters = {"loc": loc, "scale": scale}
        pdf = Gumbel._pdf_eq(non_truncated_data, parameters)  # type: ignore[arg-type]
        #  the CDF at the threshold is used because the data is assumed to be truncated, meaning that observations below
        #  this threshold are not included in the dataset. When dealing with truncated data, it's essential to adjust
        #  the likelihood calculation to account for the fact that only values above the threshold are observed. The
        #  CDF at the threshold effectively normalizes the distribution, ensuring that the probabilities sum to 1 over
        #  the range of the observed data.
        cdf_at_threshold = 1 - Gumbel._cdf_eq(threshold, parameters)  # type: ignore[arg-type]
        # calculates the negative log-likelihood of a Gumbel distribution
        # Adjust the likelihood for the truncation
        # likelihood = pdf / (1 - adjusted_cdf)

        l1 = (-np.log((pdf / scale))).sum()
        # L2 is cdf based
        l2 = (-np.log(cdf_at_threshold)) * nx2

        return l1 + l2

    def fit_model(
        self,
        method: str = "mle",
        obj_func: Callable = None,
        threshold: None | float | int = None,
        test: bool = True,
    ) -> dict[str, float]:
        """Estimate the parameters of the Gumbel distribution from data.

        This method fits the Gumbel distribution to the data using various estimation
        methods, including Maximum Likelihood Estimation (MLE), Method of Moments (MM),
        L-moments, or custom optimization.

        When using the 'optimization' method with a threshold, the method employs two
        likelihood functions:
            - L1: For values below the threshold
            - L2: For values above the threshold

        The parameters are estimated by maximizing the product L1*L2.

        Args:
            method:
                Estimation method to use. Default is 'mle'.
                Options:
                    - 'mle' (Maximum Likelihood Estimation),
                    - 'mm' (Method of Moments),
                    - 'lmoments' (L-moments),
                    - 'optimization' (Custom optimization)
            obj_func (callable | None):
                Custom objective function to use for parameter estimation. Only used when method is 'optimization'.
                Default is None.
            threshold (float | int | None):
                Value above which to consider data points. If provided, only data points above this threshold are
                used for estimation when using the 'optimization' method. Default is None (use all data points).
            test:
                Whether to perform goodness-of-fit tests after estimation. Default is True.

        Returns:
            Dict:
                - loc (Numeric):
                    Location parameter of the Gumbel distribution
                - scale (Numeric):
                    Scale parameter of the Gumbel distribution
                ```python
                {"loc": 0.0, "scale": 1.0}
                ```

        Raises:
            ValueError: If an invalid method is specified or if required parameters are missing.

        Examples:
            - Import necessary libraries:
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel

                ```
            - Load sample data:
                ```python
                >>> data = np.loadtxt("examples/data/gumbel.txt")
                >>> gumbel_dist = Gumbel(data)

                ```
            - Fit using Maximum Likelihood Estimation (default):
                ```python
                >>> parameters = gumbel_dist.fit_model(method="mle", test=True)
                -----KS Test--------
                Statistic = 0.019
                Accept Hypothesis
                P value = 0.9937026761524456
                >>> print(parameters)
                {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}

                ```
            - Fit using L-moments:
                ```python
                >>> parameters = gumbel_dist.fit_model(method="lmoments", test=True)
                -----KS Test--------
                Statistic = 0.019
                Accept Hypothesis
                P value = 0.9937026761524456
                >>> print(parameters)
                {'loc': np.float64(0.006700226367219564), 'scale': np.float64(1.0531061622114444)}

                ```
            - Fit using optimization with a threshold:
                ```python
                >>> threshold = np.quantile(data, 0.80)
                >>> print(threshold)
                1.5717000000000005
                >>> parameters = gumbel_dist.fit_model(
                ...     method="optimization",
                ...     obj_func=Gumbel.truncated_distribution,
                ...     threshold=threshold
                ... )
                Optimization terminated successfully.
                         Current function value: 0.000000
                         Iterations: 39
                         Function evaluations: 116
                -----KS Test--------
                Statistic = 0.107
                reject Hypothesis
                P value = 2.0977827855404345e-05

                ```
            # Note: When P value is less than the significance level, we reject the null hypothesis,
            # but in this case we're fitting the distribution to part of the data, not the whole data.
            ```
        """
        # obj_func = lambda p, x: (-np.log(Gumbel.pdf(x, p[0], p[1]))).sum()
        # #first we make a simple Gumbel fit
        # Par1 = so.fmin(obj_func, [0.5,0.5], args=(np.array(data),))
        method = super().fit_model(method=method)  # type: ignore[assignment]

        if method == "mle" or method == "mm":
            param_list: Any = list(gumbel_r.fit(self.data, method=method))
        elif method == "lmoments":
            lm = Lmoments(self.data)
            lmu = lm.calculate()
            param_list = Lmoments.gumbel(lmu)
        elif method == "optimization":
            if obj_func is None or threshold is None:
                raise TypeError("threshold should be numeric value")

            param_list = gumbel_r.fit(self.data, method="mle")
            # then we use the result as starting value for your truncated Gumbel fit
            param_list = so.fmin(
                obj_func,
                [threshold, param_list[0], param_list[1]],
                args=(self.data,),
                maxiter=500,
                maxfun=500,
            )
            param_list = [param_list[1], param_list[2]]
        else:
            raise ValueError(f"The given: {method} does not exist")

        param: dict[str, float] = {"loc": param_list[0], "scale": param_list[1]}
        self.parameters = param

        if test:
            self.ks()
            self.chisquare()

        return param

    def inverse_cdf(
        self,
        cdf: np.ndarray | list[float] | None = None,
        parameters: dict[str, float] = None,
    ) -> np.ndarray:
        """Calculate the inverse of the cumulative distribution function (quantile function).

        This method calculates the theoretical values (quantiles) corresponding to the given
        CDF values using the specified Gumbel distribution parameters.

        Args:
            cdf: CDF values (non-exceedance probabilities) for which to calculate the quantiles.
                Values should be between 0 and 1.
            parameters (dict[str, float]):
                If None, uses the parameters provided during initialization.
                    - loc (Numeric):
                        Location parameter of the Gumbel distribution
                    - scale (Numeric):
                        Scale parameter of the Gumbel distribution (must be positive)
                    ```python
                    {"loc": 0.0, "scale": 1.0}
                ```

        Returns:
            Numpy array containing the quantile values corresponding to the given CDF values.

        Raises:
            ValueError: If any CDF value is less than or equal to 0 or greater than 1.

        Examples:
            - Load sample data and initialize distribution:
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel
                >>> data = np.loadtxt("examples/data/gumbel.txt")
                >>> parameters = {'loc': 0, 'scale': 1}
                >>> gumbel_dist = Gumbel(data, parameters)

                ```
            - Calculate quantiles for specific probabilities:
                ```python
                >>> cdf = [0.1, 0.2, 0.4, 0.6, 0.8, 0.9]
                >>> data_values = gumbel_dist.inverse_cdf(cdf)
                >>> print(data_values) # doctest: +SKIP
                [-0.83403245 -0.475885 0.08742157 0.67172699 1.49993999 2.25036733]

                ```

            - Calculate return levels for specific return periods:
                ```python
                >>> return_periods = [10, 50, 100]
                >>> probs = 1 - 1/np.array(return_periods)
                >>> return_levels = gumbel_dist.inverse_cdf(probs)
                >>> print(f"10-year return level: {return_levels[0]:.2f}")
                10-year return level: 2.25
                >>> print(f"50-year return level: {return_levels[1]:.2f}")
                50-year return level: 3.90
                >>> print(f"100-year return level: {return_levels[2]:.2f}")
                100-year return level: 4.60

                ```
        """
        if parameters is None:
            parameters = self.parameters

        cdf = np.array(cdf)
        if np.any(cdf < 0) or np.any(cdf > 1):
            raise ValueError(CDF_INVALID_VALUE_ERROR)

        qth = self._inv_cdf(cdf, parameters)  # type: ignore[arg-type]

        return qth

    @staticmethod
    def _inv_cdf(
        cdf: np.ndarray | list[float], parameters: dict[str, float]
    ) -> np.ndarray:
        """Calculate the inverse CDF (quantile function) values for Gumbel distribution.

        This method implements the Gumbel inverse CDF equation:
        Q(p) = loc - scale * ln(-ln(p))

        Args:
            cdf: CDF values (non-exceedance probabilities) for which to calculate quantiles.
                Values should be between 0 and 1.
            parameters: Dictionary of distribution parameters.
                Must contain:
                - "loc": Location parameter (ΞΆ)
                - "scale": Scale parameter (Ξ΄), must be positive

        Returns:
            Numpy array containing the quantile values corresponding to the given CDF values.

        Raises:
            ValueError: If the scale parameter is negative or zero.
        """
        loc = parameters.get("loc")
        scale = parameters.get("scale")
        if scale is None or scale <= 0:
            raise ValueError(SCALE_PARAMETER_ERROR)

        qth = gumbel_r.ppf(cdf, loc=loc, scale=scale)

        return qth

    def ks(self) -> tuple:
        """Perform the Kolmogorov-Smirnov (KS) test for goodness of fit.

        This method tests whether the data follows the fitted Gumbel distribution using
        the Kolmogorov-Smirnov test. The test compares the empirical CDF of the data
        with the theoretical CDF of the fitted distribution.

        Returns:
            Tuple:
                - 0:
                    D statistic: The maximum absolute difference between the empirical and theoretical CDFs.
                    The smaller the D statistic, the more likely the data follows the distribution.
                    The KS test statistic measures the maximum distance between the empirical CDF
                    (Weibull plotting position) and the CDF of the reference distribution.
                - 1:
                    p-value The probability of observing a D statistic as extreme as the one calculated, assuming the
                    null hypothesis is true (data follows the distribution).
                    A high p-value (close to 1) suggests that there is a high probability that the sample comes from
                    the specified distribution.
                    If p-value < significance level (typically 0.05), reject the null hypothesis.

        Raises:
            ValueError:
                If the distribution parameters have not been estimated.

        Examples:
            - Import necessary libraries and initialize the Gumbel distribution:
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel

                ```
            - Perform KS test:
                ```python
                >>> data = np.loadtxt("examples/data/gumbel.txt")
                >>> gumbel_dist = Gumbel(data)
                >>> gumbel_dist.fit_model()
                -----KS Test--------
                Statistic = 0.019
                Accept Hypothesis
                P value = 0.9937026761524456
                {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
                >>> d_stat, p_value = gumbel_dist.ks()
                -----KS Test--------
                Statistic = 0.019
                Accept Hypothesis
                P value = 0.9937026761524456

                ```
            - Interpret the results:
                ```python
                >>> alpha = 0.05
                >>> if p_value < alpha:
                ...     print(f"Reject the null hypothesis (p-value: {p_value:.4f} < {alpha})")
                ...     print("The data does not follow the fitted Gumbel distribution.")
                ... else:
                ...     print(f"Cannot reject the null hypothesis (p-value: {p_value:.4f} >= {alpha})")
                ...     print("The data may follow the fitted Gumbel distribution.")
                Cannot reject the null hypothesis (p-value: 0.9937 >= 0.05)
                The data may follow the fitted Gumbel distribution.

                ```
        """
        return super().ks()

    def chisquare(self) -> tuple:
        """Perform the Chi-square test for goodness of fit.

        This method tests whether the data follows the fitted Gumbel distribution using the Chi-square test. The test
        compares the observed frequencies with the expected frequencies under the fitted distribution.

        Returns:
            Tuple:
                - Chi-square statistic:
                    The test statistic measuring the difference between observed and expected frequencies.
                - p-value:
                    The probability of observing a Chi-square statistic as extreme as the one calculated,
                    assuming the null hypothesis is true (data follows the distribution).
                    If p-value < significance level (typically 0.05), reject the null hypothesis. Returns None if the test
                    fails due to an exception.

        Raises:
            ValueError:
                If the distribution parameters have not been estimated.

        Examples:
            - Perform Chi-square test:
                ```python
                >>> import numpy as np
                >>> from statista.distributions import Gumbel
                >>> data = np.loadtxt("examples/data/gumbel.txt")
                >>> gumbel_dist = Gumbel(data)
                >>> gumbel_dist.fit_model()
                -----KS Test--------
                Statistic = 0.019
                Accept Hypothesis
                P value = 0.9937026761524456
                {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
                >>> gumbel_dist.chisquare() #doctest: +SKIP

                ```
            - Interpret the results:
                ```python
                >>> alpha = 0.05
                >>> if p_value < alpha: #doctest: +SKIP
                ...     print(f"Reject the null hypothesis (p-value: {p_value:.4f} < {alpha})")
                ...     print("The data does not follow the fitted Gumbel distribution.")
                >>> else: #doctest: +SKIP
                ...     print(f"Cannot reject the null hypothesis (p-value: {p_value:.4f} >= {alpha})")
                ...     print("The data may follow the fitted Gumbel distribution.")
                ```
        """
        return super().chisquare()

    def confidence_interval(  # type: ignore[override]
        self,
        alpha: float = 0.1,
        prob_non_exceed: np.ndarray = None,
        parameters: dict[str, float | Any] = None,
        plot_figure: bool = False,
        **kwargs: Any,
    ) -> tuple[np.ndarray, np.ndarray] | tuple[np.ndarray, np.ndarray, Figure, Axes]:
        """Calculate confidence intervals for the Gumbel distribution quantiles.

        This method calculates the upper and lower bounds of the confidence interval
        for the quantiles of the Gumbel distribution. It can also generate a plot of the
        confidence intervals.

        Args:
            alpha (float):
                Significance level for the confidence interval. Default is 0.1 (90% confidence interval).
            prob_non_exceed: Non-exceedance probabilities for which to calculate quantiles.
                If None, uses the empirical CDF calculated using Weibull plotting positions.
            parameters (dict[str, Any]):
                If None, uses the parameters provided during initialization.
                - loc (Numeric):
                    Location parameter of the Gumbel distribution
                - scale (Numeric):
                    Scale parameter of the Gumbel distribution (must be positive)
                ```python
                {"loc": 0.0, "scale": 1.0}
                ```
            plot_figure (bool):
                Whether to generate a plot of the confidence intervals. Default is False.
            **kwargs:
                Additional keyword arguments to pass to the plotting function.
                    - fig_size:
                        Size of the figure as a tuple (width, height). Default is (6, 6).
                    - fontsize:
                        Font size for plot labels. Default is 11.
                    - marker_size:
                        Size of markers in the plot.

        Returns:
            If plot_figure is False:
                Tuple containing:
                - Numpy array of upper bound values
                - Numpy array of lower bound values
            If plot_figure is True:
                Tuple containing:
                - Numpy array of upper bound values
                - Numpy array of lower bound values
                - Figure object
                - Axes object

        Raises:
            ValueError: If the scale parameter is negative or zero.

        Examples:
            - Load data and initialize distribution:
                ```python
                >>> import numpy as np
                >>> import matplotlib.pyplot as plt
                >>> from statista.distributions import Gumbel
                >>> data = np.loadtxt("examples/data/time_series2.txt")
                >>> parameters = {"loc": 463.8040, "scale": 220.0724}
                >>> gumbel_dist = Gumbel(data, parameters)

                ```
            - Calculate confidence intervals
                ```python
                >>> upper, lower = gumbel_dist.confidence_interval(alpha=0.1)

                ```
            - Generate a confidence interval plot:
                ```python
                >>> upper, lower, fig, ax = gumbel_dist.confidence_interval(
                ...     alpha=0.1,
                ...     plot_figure=True,
                ...     marker_size=10
                ... )
                >>> plt.show()

                ```
            ![image](./../../_images/distributions/gumbel-confidence-interval.png)
        """
        # if no parameters are provided, take the parameters provided in the class initialization.
        if parameters is None:
            parameters = self.parameters

        scale = parameters.get("scale")
        if scale is None or scale <= 0:
            raise ValueError(SCALE_PARAMETER_ERROR)

        if prob_non_exceed is None:
            prob_non_exceed = PlottingPosition.weibul(self.data)

        qth = self._inv_cdf(prob_non_exceed, parameters)
        y = [-np.log(-np.log(j)) for j in prob_non_exceed]
        std_error = [
            (scale / np.sqrt(len(self.data)))
            * np.sqrt(1.1087 + 0.5140 * j + 0.6079 * j**2)
            for j in y
        ]
        v = norm.ppf(1 - alpha / 2)
        q_upper = np.array([qth[j] + v * std_error[j] for j in range(len(qth))])
        q_lower = np.array([qth[j] - v * std_error[j] for j in range(len(qth))])

        if plot_figure:
            # if the prob_non_exceed is given, check if the length is the same as the data
            if len(prob_non_exceed) != len(self.data):
                raise ValueError(PROB_NON_EXCEEDENCE_ERROR)

            fig, ax = Plot.confidence_level(
                qth, self.data, q_lower, q_upper, alpha=alpha, **kwargs  # type: ignore[arg-type]
            )
            return q_upper, q_lower, fig, ax
        else:
            return q_upper, q_lower

    def plot(
        self,
        fig_size: tuple[float, float] = (10, 5),
        xlabel: str = PDF_XAXIS_LABEL,
        ylabel: str = "cdf",
        fontsize: int = 15,
        cdf: np.ndarray | list | None = None,
        parameters: dict[str, float | Any] = None,
    ) -> tuple[Figure, tuple[Axes, Axes]]:  # pylint: disable=arguments-differ
        """Probability plot.

        Probability Plot method calculates the theoretical values based on the Gumbel distribution
        parameters, theoretical cdf (or weibul), and calculates the confidence interval.

        Args:
            fig_size: tuple, Default is (10, 5).
                Size of the figure.
            cdf: [np.ndarray]
                theoretical cdf calculated using weibul or using the distribution cdf function.
            fig_size: [tuple]
                Default is (10, 5)
            xlabel: [str]
                Default is "Actual data"
            ylabel: [str]
                Default is "cdf"
            fontsize: [float]
                Default is 15.
            parameters: dict[str, str]
                {"loc": val, "scale": val}
                - loc: [numeric]
                    location parameter of the gumbel distribution.
                - scale: [numeric]
                    scale parameter of the gumbel distribution.

        Returns:
            Figure:
                matplotlib figure object
            tuple[Axes, Axes]:
                matplotlib plot axes

        Examples:
        - Instantiate the Gumbel class with the data and the parameters:
            ```python
            >>> import matplotlib.pyplot as plt
            >>> data = np.loadtxt("examples/data/time_series2.txt")
            >>> parameters = {"loc": 463.8040, "scale": 220.0724}
            >>> gumbel_dist = Gumbel(data, parameters)

            ```
        - To calculate the confidence interval, we need to provide the confidence level (`alpha`).
            ```python
            >>> fig, ax = gumbel_dist.plot()
            >>> print(fig)
            Figure(1000x500)
            >>> print(ax)
            (<Axes: xlabel='Actual data', ylabel='pdf'>, <Axes: xlabel='Actual data', ylabel='cdf'>)

            ```
            ![gumbel-plot](./../../_images/gumbel-plot.png)
        """
        # if no parameters are provided, take the parameters provided in the class initialization.
        if parameters is None:
            parameters = self.parameters

        scale = parameters.get("scale")

        if scale is None or scale <= 0:
            raise ValueError(SCALE_PARAMETER_ERROR)

        if cdf is None:
            cdf = PlottingPosition.weibul(self.data)
        else:
            # if the cdf is given, check if the length is the same as the data
            if len(cdf) != len(self.data):
                raise ValueError(
                    "Length of cdf does not match the length of data, use the `PlottingPosition.weibul(data)` "
                    "to the get the non-exceedance probability"
                )

        q_x = np.linspace(
            float(self.data_sorted[0]), 1.5 * float(self.data_sorted[-1]), 10000
        )
        pdf_fitted: Any = self.pdf(parameters=parameters, data=q_x)
        cdf_fitted: Any = self.cdf(parameters=parameters, data=q_x)

        fig, ax = Plot.details(
            q_x,
            self.data,
            pdf_fitted,
            cdf_fitted,
            cdf,
            fig_size=fig_size,
            xlabel=xlabel,
            ylabel=ylabel,
            fontsize=fontsize,
        )

        return fig, ax

__init__(data=None, parameters=None) #

Initialize a Gumbel distribution with data or parameters.

Parameters:

Name Type Description Default
data list | ndarray | None

Data time series as a list or numpy array.

None
parameters dict[str, float]
  • loc (numeric): Location parameter of the Gumbel distribution
  • scale (numeric): Scale parameter of the Gumbel distribution (must be positive)
    {"loc": 0.0, "scale": 1.0}
    
None

Raises:

Type Description
ValueError

If neither data nor parameters are provided.

TypeError

If data is not a list or numpy array, or if parameters is not a dictionary.

Examples:

  • Import necessary libraries
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    
  • Load sample data:
    >>> data = np.loadtxt("examples/data/gumbel.txt")
    
  • Initialize with data only
    >>> gumbel_dist = Gumbel(data)
    
  • Initialize with both data and parameters
    >>> parameters = {"loc": 0, "scale": 1}
    >>> gumbel_dist = Gumbel(data, parameters)
    
  • Initialize with parameters only
    >>> gumbel_dist = Gumbel(parameters={"loc": 0, "scale": 1})
    
Source code in src\statista\distributions\gumbel.py
def __init__(
    self,
    data: list | np.ndarray | None = None,
    parameters: dict[str, float] = None,
):
    """Initialize a Gumbel distribution with data or parameters.

    Args:
        data:
            Data time series as a list or numpy array.
        parameters:
            - loc (numeric):
                Location parameter of the Gumbel distribution
            - scale (numeric):
                Scale parameter of the Gumbel distribution (must be positive)
            ```python
            {"loc": 0.0, "scale": 1.0}
            ```

    Raises:
        ValueError: If neither data nor parameters are provided.
        TypeError: If data is not a list or numpy array, or if parameters is not a dictionary.

    Examples:
        - Import necessary libraries
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel

            ```
        - Load sample data:
            ```python
            >>> data = np.loadtxt("examples/data/gumbel.txt")

            ```
        - Initialize with data only
            ```python
            >>> gumbel_dist = Gumbel(data)

            ```
        - Initialize with both data and parameters
            ```python
            >>> parameters = {"loc": 0, "scale": 1}
            >>> gumbel_dist = Gumbel(data, parameters)

            ```
        - Initialize with parameters only
            ```python
            >>> gumbel_dist = Gumbel(parameters={"loc": 0, "scale": 1})

            ```
    """
    super().__init__(data, parameters)

pdf(plot_figure=False, parameters=None, data=None, *args, **kwargs) #

Calculate the probability density function (PDF) values for Gumbel distribution.

This method calculates the PDF values for the given data using the specified Gumbel distribution parameters. It can also generate a plot of the PDF.

Parameters:

Name Type Description Default
plot_figure bool

Whether to generate a plot of the PDF. Default is False.

False
parameters dict[str, Any]
- loc (Numberic):
    Location parameter of the Gumbel distribution
- scale (Numberic):
    Scale parameter of the Gumbel distribution (must be positive)
```python
{"loc": 0.0, "scale": 1.0}
```
If None, uses the parameters provided during initialization.
None
data list[float] | ndarray | None

Data points for which to calculate PDF values. If None, uses the data provided during initialization.

None
*args Any

Variable length argument list to pass to the parent class method.

()
**kwargs Any

Arbitrary keyword arguments to pass to the plotting function. the possible keyword arguments are: - fig_size: Size of the figure as a tuple (width, height). Default is (6, 5). - xlabel: Label for the x-axis. Default is "Actual data". - ylabel: Label for the y-axis. Default is "pdf". - fontsize: Font size for plot labels. Default is 15.

{}

Returns:

Type Description
ndarray | tuple[ndarray, Figure, Any]

If plot_figure is False: Numpy array containing the PDF values for each data point.

ndarray | tuple[ndarray, Figure, Any]

If plot_figure is True: Tuple containing: - Numpy array of PDF values - Figure object - Axes object

Examples:

  • Import libraries:
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    
  • Load sample data:
    >>> data = np.loadtxt("examples/data/gumbel.txt")
    
  • Calculate PDF values with default parameters:
    >>> gumbel_dist = Gumbel(data)
    >>> gumbel_dist.fit_model() # doctest: +SKIP
    -----KS Test--------
    Statistic = 0.019
    Accept Hypothesis
    P value = 0.9937026761524456
    {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
    >>> pdf_values = gumbel_dist.pdf() # doctest: +SKIP
    
  • Generate a PDF plot:

    >>> pdf_values, fig, ax = gumbel_dist.pdf(
    ...     plot_figure=True,
    ...     xlabel="Values",
    ...     ylabel="Density",
    ...     fig_size=(8, 6)
    ... ) # doctest: +SKIP
    
    gamma-pdf

  • Calculate PDF with custom parameters:

    >>> parameters = {'loc': 0, 'scale': 1}
    >>> pdf_custom = gumbel_dist.pdf(parameters=parameters)
    >>> print(pdf_custom) #doctest: +SKIP
    array([5.44630532e-02, 1.55313724e-01, 3.29857975e-01, 7.01082330e-02,
           3.54572987e-01, 1.46804327e-01, 3.36843753e-01, 1.01491310e-01,
           2.38861650e-01, 3.42034071e-01, 2.59606975e-01, 3.33403275e-01,
           3.52075676e-01, 1.24617619e-01, 6.37994991e-02, 3.67871923e-01,
           ...
           2.12529308e-01, 3.13383427e-01, 3.62783762e-01, 4.09957082e-02,
           2.61395400e-01, 2.58511435e-01, 1.94640967e-01, 3.37392659e-01])
    

Source code in src\statista\distributions\gumbel.py
def pdf(  # type: ignore[override]
    self,
    plot_figure: bool = False,
    parameters: dict[str, Any] = None,
    data: list[float] | np.ndarray | None = None,
    *args: Any,
    **kwargs: Any,
) -> np.ndarray | tuple[np.ndarray, Figure, Any]:
    """Calculate the probability density function (PDF) values for Gumbel distribution.

    This method calculates the PDF values for the given data using the specified
    Gumbel distribution parameters. It can also generate a plot of the PDF.

    Args:
        plot_figure:
            Whether to generate a plot of the PDF. Default is False.
        parameters:
                - loc (Numberic):
                    Location parameter of the Gumbel distribution
                - scale (Numberic):
                    Scale parameter of the Gumbel distribution (must be positive)
                ```python
                {"loc": 0.0, "scale": 1.0}
                ```
                If None, uses the parameters provided during initialization.
        data:
            Data points for which to calculate PDF values. If None, uses the data provided during initialization.
        *args:
            Variable length argument list to pass to the parent class method.
        **kwargs:
            Arbitrary keyword arguments to pass to the plotting function.
            the possible keyword arguments are:
                - fig_size:
                    Size of the figure as a tuple (width, height). Default is (6, 5).
                - xlabel:
                    Label for the x-axis. Default is "Actual data".
                - ylabel:
                    Label for the y-axis. Default is "pdf".
                - fontsize:
                    Font size for plot labels. Default is 15.

    Returns:
        If plot_figure is False:
            Numpy array containing the PDF values for each data point.
        If plot_figure is True:
            Tuple containing:
            - Numpy array of PDF values
            - Figure object
            - Axes object

    Examples:
        - Import libraries:
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel

            ```
        - Load sample data:
            ```python
            >>> data = np.loadtxt("examples/data/gumbel.txt")

            ```
        - Calculate PDF values with default parameters:
            ```python
            >>> gumbel_dist = Gumbel(data)
            >>> gumbel_dist.fit_model() # doctest: +SKIP
            -----KS Test--------
            Statistic = 0.019
            Accept Hypothesis
            P value = 0.9937026761524456
            {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
            >>> pdf_values = gumbel_dist.pdf() # doctest: +SKIP

            ```
        - Generate a PDF plot:
            ```python
            >>> pdf_values, fig, ax = gumbel_dist.pdf(
            ...     plot_figure=True,
            ...     xlabel="Values",
            ...     ylabel="Density",
            ...     fig_size=(8, 6)
            ... ) # doctest: +SKIP

            ```
            ![gamma-pdf](./../../_images/distributions/gamma-pdf-1.png)

        - Calculate PDF with custom parameters:
            ```python
            >>> parameters = {'loc': 0, 'scale': 1}
            >>> pdf_custom = gumbel_dist.pdf(parameters=parameters)
            >>> print(pdf_custom) #doctest: +SKIP
            array([5.44630532e-02, 1.55313724e-01, 3.29857975e-01, 7.01082330e-02,
                   3.54572987e-01, 1.46804327e-01, 3.36843753e-01, 1.01491310e-01,
                   2.38861650e-01, 3.42034071e-01, 2.59606975e-01, 3.33403275e-01,
                   3.52075676e-01, 1.24617619e-01, 6.37994991e-02, 3.67871923e-01,
                   ...
                   2.12529308e-01, 3.13383427e-01, 3.62783762e-01, 4.09957082e-02,
                   2.61395400e-01, 2.58511435e-01, 1.94640967e-01, 3.37392659e-01])
            ```
    """
    result = super().pdf(
        parameters=parameters,
        data=data,
        plot_figure=plot_figure,
        *args,
        **kwargs,
    )  # type: ignore[misc]
    return result

random(size, parameters=None) #

Generate random samples from the Gumbel distribution.

This method generates random samples following the Gumbel distribution with the specified parameters.

Parameters:

Name Type Description Default
size int

Number of random samples to generate.

required
parameters dict[str, float | Any]
- loc (Numberic):
    Location parameter of the Gumbel distribution
- scale (Numberic):
    Scale parameter of the Gumbel distribution (must be positive)
```python
{"loc": 0.0, "scale": 1.0}
```
If None, uses the parameters provided during initialization.
None

Returns:

Type Description
tuple[ndarray, Figure, Any] | ndarray

Numpy array containing the generated random samples.

Raises:

Type Description
ValueError

If the parameters are not provided and not available from initialization.

Examples:

  • import the required modules and generate random samples:
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    >>> parameters = {'loc': 0, 'scale': 1}
    >>> gumbel_dist = Gumbel(parameters=parameters)
    >>> random_data = gumbel_dist.random(1000)
    
  • Analyze the generated data:

    • Plot the PDF of the random data:

      >>> _ = gumbel_dist.pdf(data=random_data, plot_figure=True, xlabel="Random data")
      
      gamma-pdf

    • Plot the CDF of the random data:

      >>> _ = gumbel_dist.cdf(data=random_data, plot_figure=True, xlabel="Random data")
      
      gamma-cdf

  • Verify the parameters by fitting the model to the random data

    >>> gumbel_dist = Gumbel(data=random_data)
    >>> fitted_params = gumbel_dist.fit_model() #doctest: +SKIP
    -----KS Test--------
    Statistic = 0.018
    Accept Hypothesis
    P value = 0.9969602438295625
    >>> print(f"Fitted parameters: {fitted_params}") #doctest: +SKIP
    Fitted parameters: {'loc': np.float64(-0.010212105435018243), 'scale': 1.010287499893525}
    

  • Should be close to the original parameters {'loc': 0, 'scale': 1} ```
Source code in src\statista\distributions\gumbel.py
def random(
    self,
    size: int,
    parameters: dict[str, float | Any] = None,
) -> tuple[np.ndarray, Figure, Any] | np.ndarray:
    """Generate random samples from the Gumbel distribution.

    This method generates random samples following the Gumbel distribution
    with the specified parameters.

    Args:
        size:
            Number of random samples to generate.
        parameters:
                - loc (Numberic):
                    Location parameter of the Gumbel distribution
                - scale (Numberic):
                    Scale parameter of the Gumbel distribution (must be positive)
                ```python
                {"loc": 0.0, "scale": 1.0}
                ```
                If None, uses the parameters provided during initialization.

    Returns:
        Numpy array containing the generated random samples.

    Raises:
        ValueError: If the parameters are not provided and not available from initialization.

    Examples:
        - import the required modules and generate random samples:
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel
            >>> parameters = {'loc': 0, 'scale': 1}
            >>> gumbel_dist = Gumbel(parameters=parameters)
            >>> random_data = gumbel_dist.random(1000)

            ```
        - Analyze the generated data:
            - Plot the PDF of the random data:
            ```python
            >>> _ = gumbel_dist.pdf(data=random_data, plot_figure=True, xlabel="Random data")

            ```
            ![gamma-pdf](./../../_images/distributions/gamma-random-1.png)

            - Plot the CDF of the random data:
                ```python
                >>> _ = gumbel_dist.cdf(data=random_data, plot_figure=True, xlabel="Random data")

                ```
                ![gamma-cdf](./../../_images/distributions/gamma-cdf-1.png)

        - Verify the parameters by fitting the model to the random data
            ```python
            >>> gumbel_dist = Gumbel(data=random_data)
            >>> fitted_params = gumbel_dist.fit_model() #doctest: +SKIP
            -----KS Test--------
            Statistic = 0.018
            Accept Hypothesis
            P value = 0.9969602438295625
            >>> print(f"Fitted parameters: {fitted_params}") #doctest: +SKIP
            Fitted parameters: {'loc': np.float64(-0.010212105435018243), 'scale': 1.010287499893525}

            ```
        - Should be close to the original parameters {'loc': 0, 'scale': 1}
        ```
    """
    # if no parameters are provided, take the parameters provided in the class initialization.
    if parameters is None:
        parameters = self.parameters

    loc = parameters.get("loc")
    scale = parameters.get("scale")
    if scale is None or scale <= 0:
        raise ValueError(SCALE_PARAMETER_ERROR)

    random_data = gumbel_r.rvs(loc=loc, scale=scale, size=size)
    return random_data

cdf(plot_figure=False, parameters=None, data=None, *args, **kwargs) #

Calculate the cumulative distribution function (CDF) values for Gumbel distribution.

This method calculates the CDF values for the given data using the specified Gumbel distribution parameters. It can also generate a plot of the CDF.

Parameters:

Name Type Description Default
plot_figure bool

Whether to generate a plot of the CDF. Default is False.

False
parameters dict[str, Any]
  • loc: Location parameter of the Gumbel distribution
  • scale: Scale parameter of the Gumbel distribution (must be positive)
    {"loc": 0.0, "scale": 1.0}
    
    If None, uses the parameters provided during initialization.
None
data list[float] | ndarray | None

Data points for which to calculate CDF values. If None, uses the data provided during initialization.

None
*args Any

Variable length argument list to pass to the parent class method.

()
**kwargs Any
  • fig_size: Size of the figure as a tuple (width, height). Default is (6, 5).
  • xlabel: Label for the x-axis. Default is "Actual data".
  • ylabel: Label for the y-axis. Default is "cdf".
  • fontsize: Font size for plot labels. Default is 15.
{}

Returns:

Type Description
ndarray | tuple[ndarray, Figure, Axes]

If plot_figure is False: Numpy array containing the CDF values for each data point.

ndarray | tuple[ndarray, Figure, Axes]

If plot_figure is True: Tuple containing: - Numpy array of CDF values - Figure object - Axes object

Examples:

  • Load sample data:
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    >>> data = np.loadtxt("examples/data/gumbel.txt")
    
  • Calculate CDF values with default parameters:
    >>> gumbel_dist = Gumbel(data)
    >>> gumbel_dist.fit_model() # doctest: +SKIP
    -----KS Test--------
    Statistic = 0.019
    Accept Hypothesis
    P value = 0.9937026761524456
    {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
    >>> cdf_values = gumbel_dist.cdf() # doctest: +SKIP
    
  • Generate a CDF plot:

    >>> cdf_values, fig, ax = gumbel_dist.cdf(
    ...     plot_figure=True,
    ...     xlabel="Values",
    ...     ylabel="Probability",
    ...     fig_size=(8, 6)
    ... ) # doctest: +SKIP
    
    gamma-cdf

  • Calculate CDF with custom parameters:

    >>> parameters = {'loc': 0, 'scale': 1}
    >>> cdf_custom = gumbel_dist.cdf(parameters=parameters)
    

  • Calculate exceedance probability (1-CDF):
    >>> exceedance_prob = 1 - cdf_values # doctest: +SKIP
    
    ```
Source code in src\statista\distributions\gumbel.py
def cdf(  # type: ignore[override]
    self,
    plot_figure: bool = False,
    parameters: dict[str, Any] = None,
    data: list[float] | np.ndarray | None = None,
    *args: Any,
    **kwargs: Any,
) -> (
    np.ndarray | tuple[np.ndarray, Figure, Axes]
):  # pylint: disable=arguments-differ
    """Calculate the cumulative distribution function (CDF) values for Gumbel distribution.

    This method calculates the CDF values for the given data using the specified
    Gumbel distribution parameters. It can also generate a plot of the CDF.

    Args:
        plot_figure:
            Whether to generate a plot of the CDF. Default is False.
        parameters:
            - loc:
                Location parameter of the Gumbel distribution
            - scale:
                Scale parameter of the Gumbel distribution (must be positive)
            ```python
            {"loc": 0.0, "scale": 1.0}
            ```
            If None, uses the parameters provided during initialization.
        data:
            Data points for which to calculate CDF values. If None, uses the data provided during initialization.
        *args:
            Variable length argument list to pass to the parent class method.
        **kwargs:
            - fig_size:
                Size of the figure as a tuple (width, height). Default is (6, 5).
            - xlabel:
                Label for the x-axis. Default is "Actual data".
            - ylabel:
                Label for the y-axis. Default is "cdf".
            - fontsize:
                Font size for plot labels. Default is 15.

    Returns:
        If plot_figure is False:
            Numpy array containing the CDF values for each data point.
        If plot_figure is True:
            Tuple containing:
            - Numpy array of CDF values
            - Figure object
            - Axes object

    Examples:
        -  Load sample data:
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel
            >>> data = np.loadtxt("examples/data/gumbel.txt")

            ```
        -  Calculate CDF values with default parameters:
            ```python
            >>> gumbel_dist = Gumbel(data)
            >>> gumbel_dist.fit_model() # doctest: +SKIP
            -----KS Test--------
            Statistic = 0.019
            Accept Hypothesis
            P value = 0.9937026761524456
            {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
            >>> cdf_values = gumbel_dist.cdf() # doctest: +SKIP

            ```
        -  Generate a CDF plot:
            ```python
            >>> cdf_values, fig, ax = gumbel_dist.cdf(
            ...     plot_figure=True,
            ...     xlabel="Values",
            ...     ylabel="Probability",
            ...     fig_size=(8, 6)
            ... ) # doctest: +SKIP

            ```
            ![gamma-cdf](./../../_images/distributions/gamma-cdf-2.png)

        -  Calculate CDF with custom parameters:
            ```python
            >>> parameters = {'loc': 0, 'scale': 1}
            >>> cdf_custom = gumbel_dist.cdf(parameters=parameters)

            ```
        -  Calculate exceedance probability (1-CDF):
            ```python
            >>> exceedance_prob = 1 - cdf_values # doctest: +SKIP

            ```
        ```
    """
    result = super().cdf(
        parameters=parameters,
        data=data,
        plot_figure=plot_figure,
        *args,
        **kwargs,
    )  # type: ignore[misc]
    return result

return_period(*, data=None, parameters=None) #

Calculate return periods for given data values.

The return period is the average time between events of a given magnitude. It is calculated as 1/(1-F(x)), where F(x) is the cumulative distribution function.

Parameters:

Name Type Description Default
data bool | list[float] | None

Values for which to calculate return periods. Can be a single value, list, or array. If None, uses the data provided during initialization.

None
parameters dict[str, float | Any]
  • loc (Numeric): Location parameter of the Gumbel distribution
  • scale (Numeric): Scale parameter of the Gumbel distribution (must be positive)
    {"loc": 0.0, "scale": 1.0}
    
    If None, uses the parameters provided during initialization.
None

Returns:

Type Description
ndarray

np.ndarray: Return periods corresponding to the input data values. - If input is a single value, returns a single value. - If input is a list or array, returns an array of return periods.

Examples:

  • Import necessary libraries:
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    
  • Calculate return periods for specific values
    >>> data = np.loadtxt("examples/data/gumbel.txt")
    >>> gumbel_dist = Gumbel(data=data,parameters={"loc": 0, "scale": 1})
    >>> return_periods = gumbel_dist.return_period()
    
  • Calculate the 100-year return level:
    • First, find the CDF value corresponding to a 100-year return period
    • F(x) = 1 - 1/T, where T is the return period
      >>> cdf_value = 1 - 1/100
      
  • Then, find the quantile corresponding to this CDF value:
    >>> return_level_100yr = gumbel_dist.inverse_cdf([cdf_value], parameters={"loc": 0, "scale": 1})[0]
    >>> print(f"100-year return level: {return_level_100yr:.4f}")
    100-year return level: 4.6001
    
Source code in src\statista\distributions\gumbel.py
def return_period(
    self,
    *,
    data: bool | list[float] | None = None,
    parameters: dict[str, float | Any] = None,
) -> np.ndarray:
    """Calculate return periods for given data values.

    The return period is the average time between events of a given magnitude.
    It is calculated as 1/(1-F(x)), where F(x) is the cumulative distribution function.

    Args:
        data:
            Values for which to calculate return periods. Can be a single value, list, or array.
            If None, uses the data provided during initialization.
        parameters:
            - loc (Numeric):
                Location parameter of the Gumbel distribution
            - scale (Numeric):
                Scale parameter of the Gumbel distribution (must be positive)
            ```
            {"loc": 0.0, "scale": 1.0}
            ```
            If None, uses the parameters provided during initialization.

    Returns:
        np.ndarray:
            Return periods corresponding to the input data values.
            - If input is a single value, returns a single value.
            - If input is a list or array, returns an array of return periods.

    Examples:
        - Import necessary libraries:
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel

            ```
        -  Calculate return periods for specific values
            ```python
            >>> data = np.loadtxt("examples/data/gumbel.txt")
            >>> gumbel_dist = Gumbel(data=data,parameters={"loc": 0, "scale": 1})
            >>> return_periods = gumbel_dist.return_period()

            ```
        -  Calculate the 100-year return level:
            - First, find the CDF value corresponding to a 100-year return period
            - F(x) = 1 - 1/T, where T is the return period
            ```python
            >>> cdf_value = 1 - 1/100

            ```
        - Then, find the quantile corresponding to this CDF value:
            ```python
            >>> return_level_100yr = gumbel_dist.inverse_cdf([cdf_value], parameters={"loc": 0, "scale": 1})[0]
            >>> print(f"100-year return level: {return_level_100yr:.4f}")
            100-year return level: 4.6001

            ```
    """
    if data is None:
        ts: Any = self.data
    else:
        ts = data

    # if no parameters are provided, take the parameters provided in the class initialization.
    if parameters is None:
        parameters = self.parameters

    cdf: np.ndarray = self.cdf(parameters=parameters, data=ts)  # type: ignore[assignment]

    rp = 1 / (1 - cdf)

    return rp

truncated_distribution(opt_parameters, data) staticmethod #

Calculate a negative log-likelihood for a truncated Gumbel distribution.

This function calculates the negative log-likelihood of a Gumbel distribution that is truncated (i.e., the data only includes values above a certain threshold). It is used as an objective function for parameter optimization when fitting a truncated Gumbel distribution to data.

This approach is useful when the dataset is incomplete or when data is only available above a certain threshold, a common scenario in environmental sciences, finance, and other fields dealing with extremes.

Parameters:

Name Type Description Default
opt_parameters list[float]

List of parameters to optimize: - opt_parameters[0]: Threshold value - opt_parameters[1]: Location parameter (loc) - opt_parameters[2]: Scale parameter (scale)

required
data list[float]

Data points to fit the truncated distribution to.

required

Returns:

Type Description
float

Negative log-likelihood value. Lower values indicate better fit.

Notes

The negative log-likelihood is calculated as the sum of two components: - L1: Log-likelihood for values below the threshold - L2: Log-likelihood for values above the threshold

Reference

https://stackoverflow.com/questions/23217484/how-to-find-parameters-of-gumbels-distribution-using-scipy-optimize

Examples:

  • import the required modules and generate sample data:
    >>> import numpy as np
    >>> from scipy.optimize import minimize
    >>> from statista.distributions import Gumbel
    >>> data = np.random.gumbel(loc=10, scale=2, size=1000)
    
  • Initial parameter guess [threshold, loc, scale]:
    >>> initial_params = [5.0, 8.0, 1.5]
    
  • Optimize parameters:
    >>> result = minimize(
    ...     Gumbel.truncated_distribution,
    ...     initial_params,
    ...     args=(data,),
    ...     method='Nelder-Mead'
    ... )
    
  • Extract optimized parameters:
    >>> threshold, loc, scale = result.x
    >>> print(f"Optimized parameters: threshold={threshold}, loc={loc}, scale={scale}")
    Optimized parameters: threshold=4.0, loc=9.599999999999994, scale=1.5
    
Source code in src\statista\distributions\gumbel.py
@staticmethod
def truncated_distribution(opt_parameters: list[float], data: list[float]) -> float:
    """Calculate a negative log-likelihood for a truncated Gumbel distribution.

    This function calculates the negative log-likelihood of a Gumbel distribution
    that is truncated (i.e., the data only includes values above a certain threshold).
    It is used as an objective function for parameter optimization when fitting
    a truncated Gumbel distribution to data.

    This approach is useful when the dataset is incomplete or when data is only
    available above a certain threshold, a common scenario in environmental sciences,
    finance, and other fields dealing with extremes.

    Args:
        opt_parameters:
            List of parameters to optimize:
                - opt_parameters[0]: Threshold value
                - opt_parameters[1]: Location parameter (loc)
                - opt_parameters[2]: Scale parameter (scale)
        data:
            Data points to fit the truncated distribution to.

    Returns:
        Negative log-likelihood value. Lower values indicate better fit.

    Notes:
        The negative log-likelihood is calculated as the sum of two components:
            - L1: Log-likelihood for values below the threshold
            - L2: Log-likelihood for values above the threshold

    Reference:
        https://stackoverflow.com/questions/23217484/how-to-find-parameters-of-gumbels-distribution-using-scipy-optimize

    Examples:
        - import the required modules and generate sample data:
            ```python
            >>> import numpy as np
            >>> from scipy.optimize import minimize
            >>> from statista.distributions import Gumbel
            >>> data = np.random.gumbel(loc=10, scale=2, size=1000)

            ```
        - Initial parameter guess [threshold, loc, scale]:
            ```python
            >>> initial_params = [5.0, 8.0, 1.5]

            ```
        - Optimize parameters:
            ```python
            >>> result = minimize(
            ...     Gumbel.truncated_distribution,
            ...     initial_params,
            ...     args=(data,),
            ...     method='Nelder-Mead'
            ... )

            ```
        - Extract optimized parameters:
            ```python
            >>> threshold, loc, scale = result.x
            >>> print(f"Optimized parameters: threshold={threshold}, loc={loc}, scale={scale}")
            Optimized parameters: threshold=4.0, loc=9.599999999999994, scale=1.5

            ```
    """
    threshold = opt_parameters[0]
    loc = opt_parameters[1]
    scale = opt_parameters[2]

    non_truncated_data = data[data < threshold]  # type: ignore[operator]
    nx2 = len(data[data >= threshold])  # type: ignore[arg-type, operator]
    # pdf with a scaled pdf
    # L1 is pdf based
    parameters = {"loc": loc, "scale": scale}
    pdf = Gumbel._pdf_eq(non_truncated_data, parameters)  # type: ignore[arg-type]
    #  the CDF at the threshold is used because the data is assumed to be truncated, meaning that observations below
    #  this threshold are not included in the dataset. When dealing with truncated data, it's essential to adjust
    #  the likelihood calculation to account for the fact that only values above the threshold are observed. The
    #  CDF at the threshold effectively normalizes the distribution, ensuring that the probabilities sum to 1 over
    #  the range of the observed data.
    cdf_at_threshold = 1 - Gumbel._cdf_eq(threshold, parameters)  # type: ignore[arg-type]
    # calculates the negative log-likelihood of a Gumbel distribution
    # Adjust the likelihood for the truncation
    # likelihood = pdf / (1 - adjusted_cdf)

    l1 = (-np.log((pdf / scale))).sum()
    # L2 is cdf based
    l2 = (-np.log(cdf_at_threshold)) * nx2

    return l1 + l2

fit_model(method='mle', obj_func=None, threshold=None, test=True) #

Estimate the parameters of the Gumbel distribution from data.

This method fits the Gumbel distribution to the data using various estimation methods, including Maximum Likelihood Estimation (MLE), Method of Moments (MM), L-moments, or custom optimization.

When using the 'optimization' method with a threshold, the method employs two likelihood functions: - L1: For values below the threshold - L2: For values above the threshold

The parameters are estimated by maximizing the product L1*L2.

Parameters:

Name Type Description Default
method str

Estimation method to use. Default is 'mle'. Options: - 'mle' (Maximum Likelihood Estimation), - 'mm' (Method of Moments), - 'lmoments' (L-moments), - 'optimization' (Custom optimization)

'mle'
obj_func callable | None

Custom objective function to use for parameter estimation. Only used when method is 'optimization'. Default is None.

None
threshold float | int | None

Value above which to consider data points. If provided, only data points above this threshold are used for estimation when using the 'optimization' method. Default is None (use all data points).

None
test bool

Whether to perform goodness-of-fit tests after estimation. Default is True.

True

Returns:

Name Type Description
Dict dict[str, float]
  • loc (Numeric): Location parameter of the Gumbel distribution
  • scale (Numeric): Scale parameter of the Gumbel distribution
    {"loc": 0.0, "scale": 1.0}
    

Raises:

Type Description
ValueError

If an invalid method is specified or if required parameters are missing.

Examples:

  • Import necessary libraries:
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    
  • Load sample data:
    >>> data = np.loadtxt("examples/data/gumbel.txt")
    >>> gumbel_dist = Gumbel(data)
    
  • Fit using Maximum Likelihood Estimation (default):
    >>> parameters = gumbel_dist.fit_model(method="mle", test=True)
    -----KS Test--------
    Statistic = 0.019
    Accept Hypothesis
    P value = 0.9937026761524456
    >>> print(parameters)
    {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
    
  • Fit using L-moments:
    >>> parameters = gumbel_dist.fit_model(method="lmoments", test=True)
    -----KS Test--------
    Statistic = 0.019
    Accept Hypothesis
    P value = 0.9937026761524456
    >>> print(parameters)
    {'loc': np.float64(0.006700226367219564), 'scale': np.float64(1.0531061622114444)}
    
  • Fit using optimization with a threshold:
    >>> threshold = np.quantile(data, 0.80)
    >>> print(threshold)
    1.5717000000000005
    >>> parameters = gumbel_dist.fit_model(
    ...     method="optimization",
    ...     obj_func=Gumbel.truncated_distribution,
    ...     threshold=threshold
    ... )
    Optimization terminated successfully.
             Current function value: 0.000000
             Iterations: 39
             Function evaluations: 116
    -----KS Test--------
    Statistic = 0.107
    reject Hypothesis
    P value = 2.0977827855404345e-05
    
Note: When P value is less than the significance level, we reject the null hypothesis,#
but in this case we're fitting the distribution to part of the data, not the whole data.#

```

Source code in src\statista\distributions\gumbel.py
def fit_model(
    self,
    method: str = "mle",
    obj_func: Callable = None,
    threshold: None | float | int = None,
    test: bool = True,
) -> dict[str, float]:
    """Estimate the parameters of the Gumbel distribution from data.

    This method fits the Gumbel distribution to the data using various estimation
    methods, including Maximum Likelihood Estimation (MLE), Method of Moments (MM),
    L-moments, or custom optimization.

    When using the 'optimization' method with a threshold, the method employs two
    likelihood functions:
        - L1: For values below the threshold
        - L2: For values above the threshold

    The parameters are estimated by maximizing the product L1*L2.

    Args:
        method:
            Estimation method to use. Default is 'mle'.
            Options:
                - 'mle' (Maximum Likelihood Estimation),
                - 'mm' (Method of Moments),
                - 'lmoments' (L-moments),
                - 'optimization' (Custom optimization)
        obj_func (callable | None):
            Custom objective function to use for parameter estimation. Only used when method is 'optimization'.
            Default is None.
        threshold (float | int | None):
            Value above which to consider data points. If provided, only data points above this threshold are
            used for estimation when using the 'optimization' method. Default is None (use all data points).
        test:
            Whether to perform goodness-of-fit tests after estimation. Default is True.

    Returns:
        Dict:
            - loc (Numeric):
                Location parameter of the Gumbel distribution
            - scale (Numeric):
                Scale parameter of the Gumbel distribution
            ```python
            {"loc": 0.0, "scale": 1.0}
            ```

    Raises:
        ValueError: If an invalid method is specified or if required parameters are missing.

    Examples:
        - Import necessary libraries:
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel

            ```
        - Load sample data:
            ```python
            >>> data = np.loadtxt("examples/data/gumbel.txt")
            >>> gumbel_dist = Gumbel(data)

            ```
        - Fit using Maximum Likelihood Estimation (default):
            ```python
            >>> parameters = gumbel_dist.fit_model(method="mle", test=True)
            -----KS Test--------
            Statistic = 0.019
            Accept Hypothesis
            P value = 0.9937026761524456
            >>> print(parameters)
            {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}

            ```
        - Fit using L-moments:
            ```python
            >>> parameters = gumbel_dist.fit_model(method="lmoments", test=True)
            -----KS Test--------
            Statistic = 0.019
            Accept Hypothesis
            P value = 0.9937026761524456
            >>> print(parameters)
            {'loc': np.float64(0.006700226367219564), 'scale': np.float64(1.0531061622114444)}

            ```
        - Fit using optimization with a threshold:
            ```python
            >>> threshold = np.quantile(data, 0.80)
            >>> print(threshold)
            1.5717000000000005
            >>> parameters = gumbel_dist.fit_model(
            ...     method="optimization",
            ...     obj_func=Gumbel.truncated_distribution,
            ...     threshold=threshold
            ... )
            Optimization terminated successfully.
                     Current function value: 0.000000
                     Iterations: 39
                     Function evaluations: 116
            -----KS Test--------
            Statistic = 0.107
            reject Hypothesis
            P value = 2.0977827855404345e-05

            ```
        # Note: When P value is less than the significance level, we reject the null hypothesis,
        # but in this case we're fitting the distribution to part of the data, not the whole data.
        ```
    """
    # obj_func = lambda p, x: (-np.log(Gumbel.pdf(x, p[0], p[1]))).sum()
    # #first we make a simple Gumbel fit
    # Par1 = so.fmin(obj_func, [0.5,0.5], args=(np.array(data),))
    method = super().fit_model(method=method)  # type: ignore[assignment]

    if method == "mle" or method == "mm":
        param_list: Any = list(gumbel_r.fit(self.data, method=method))
    elif method == "lmoments":
        lm = Lmoments(self.data)
        lmu = lm.calculate()
        param_list = Lmoments.gumbel(lmu)
    elif method == "optimization":
        if obj_func is None or threshold is None:
            raise TypeError("threshold should be numeric value")

        param_list = gumbel_r.fit(self.data, method="mle")
        # then we use the result as starting value for your truncated Gumbel fit
        param_list = so.fmin(
            obj_func,
            [threshold, param_list[0], param_list[1]],
            args=(self.data,),
            maxiter=500,
            maxfun=500,
        )
        param_list = [param_list[1], param_list[2]]
    else:
        raise ValueError(f"The given: {method} does not exist")

    param: dict[str, float] = {"loc": param_list[0], "scale": param_list[1]}
    self.parameters = param

    if test:
        self.ks()
        self.chisquare()

    return param

inverse_cdf(cdf=None, parameters=None) #

Calculate the inverse of the cumulative distribution function (quantile function).

This method calculates the theoretical values (quantiles) corresponding to the given CDF values using the specified Gumbel distribution parameters.

Parameters:

Name Type Description Default
cdf ndarray | list[float] | None

CDF values (non-exceedance probabilities) for which to calculate the quantiles. Values should be between 0 and 1.

None
parameters dict[str, float]

If None, uses the parameters provided during initialization. - loc (Numeric): Location parameter of the Gumbel distribution - scale (Numeric): Scale parameter of the Gumbel distribution (must be positive) python {"loc": 0.0, "scale": 1.0}

None

Returns:

Type Description
ndarray

Numpy array containing the quantile values corresponding to the given CDF values.

Raises:

Type Description
ValueError

If any CDF value is less than or equal to 0 or greater than 1.

Examples:

  • Load sample data and initialize distribution:
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    >>> data = np.loadtxt("examples/data/gumbel.txt")
    >>> parameters = {'loc': 0, 'scale': 1}
    >>> gumbel_dist = Gumbel(data, parameters)
    
  • Calculate quantiles for specific probabilities:

    >>> cdf = [0.1, 0.2, 0.4, 0.6, 0.8, 0.9]
    >>> data_values = gumbel_dist.inverse_cdf(cdf)
    >>> print(data_values) # doctest: +SKIP
    [-0.83403245 -0.475885 0.08742157 0.67172699 1.49993999 2.25036733]
    

  • Calculate return levels for specific return periods:

    >>> return_periods = [10, 50, 100]
    >>> probs = 1 - 1/np.array(return_periods)
    >>> return_levels = gumbel_dist.inverse_cdf(probs)
    >>> print(f"10-year return level: {return_levels[0]:.2f}")
    10-year return level: 2.25
    >>> print(f"50-year return level: {return_levels[1]:.2f}")
    50-year return level: 3.90
    >>> print(f"100-year return level: {return_levels[2]:.2f}")
    100-year return level: 4.60
    

Source code in src\statista\distributions\gumbel.py
def inverse_cdf(
    self,
    cdf: np.ndarray | list[float] | None = None,
    parameters: dict[str, float] = None,
) -> np.ndarray:
    """Calculate the inverse of the cumulative distribution function (quantile function).

    This method calculates the theoretical values (quantiles) corresponding to the given
    CDF values using the specified Gumbel distribution parameters.

    Args:
        cdf: CDF values (non-exceedance probabilities) for which to calculate the quantiles.
            Values should be between 0 and 1.
        parameters (dict[str, float]):
            If None, uses the parameters provided during initialization.
                - loc (Numeric):
                    Location parameter of the Gumbel distribution
                - scale (Numeric):
                    Scale parameter of the Gumbel distribution (must be positive)
                ```python
                {"loc": 0.0, "scale": 1.0}
            ```

    Returns:
        Numpy array containing the quantile values corresponding to the given CDF values.

    Raises:
        ValueError: If any CDF value is less than or equal to 0 or greater than 1.

    Examples:
        - Load sample data and initialize distribution:
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel
            >>> data = np.loadtxt("examples/data/gumbel.txt")
            >>> parameters = {'loc': 0, 'scale': 1}
            >>> gumbel_dist = Gumbel(data, parameters)

            ```
        - Calculate quantiles for specific probabilities:
            ```python
            >>> cdf = [0.1, 0.2, 0.4, 0.6, 0.8, 0.9]
            >>> data_values = gumbel_dist.inverse_cdf(cdf)
            >>> print(data_values) # doctest: +SKIP
            [-0.83403245 -0.475885 0.08742157 0.67172699 1.49993999 2.25036733]

            ```

        - Calculate return levels for specific return periods:
            ```python
            >>> return_periods = [10, 50, 100]
            >>> probs = 1 - 1/np.array(return_periods)
            >>> return_levels = gumbel_dist.inverse_cdf(probs)
            >>> print(f"10-year return level: {return_levels[0]:.2f}")
            10-year return level: 2.25
            >>> print(f"50-year return level: {return_levels[1]:.2f}")
            50-year return level: 3.90
            >>> print(f"100-year return level: {return_levels[2]:.2f}")
            100-year return level: 4.60

            ```
    """
    if parameters is None:
        parameters = self.parameters

    cdf = np.array(cdf)
    if np.any(cdf < 0) or np.any(cdf > 1):
        raise ValueError(CDF_INVALID_VALUE_ERROR)

    qth = self._inv_cdf(cdf, parameters)  # type: ignore[arg-type]

    return qth

ks() #

Perform the Kolmogorov-Smirnov (KS) test for goodness of fit.

This method tests whether the data follows the fitted Gumbel distribution using the Kolmogorov-Smirnov test. The test compares the empirical CDF of the data with the theoretical CDF of the fitted distribution.

Returns:

Name Type Description
Tuple tuple
  • 0: D statistic: The maximum absolute difference between the empirical and theoretical CDFs. The smaller the D statistic, the more likely the data follows the distribution. The KS test statistic measures the maximum distance between the empirical CDF (Weibull plotting position) and the CDF of the reference distribution.
  • 1: p-value The probability of observing a D statistic as extreme as the one calculated, assuming the null hypothesis is true (data follows the distribution). A high p-value (close to 1) suggests that there is a high probability that the sample comes from the specified distribution. If p-value < significance level (typically 0.05), reject the null hypothesis.

Raises:

Type Description
ValueError

If the distribution parameters have not been estimated.

Examples:

  • Import necessary libraries and initialize the Gumbel distribution:
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    
  • Perform KS test:
    >>> data = np.loadtxt("examples/data/gumbel.txt")
    >>> gumbel_dist = Gumbel(data)
    >>> gumbel_dist.fit_model()
    -----KS Test--------
    Statistic = 0.019
    Accept Hypothesis
    P value = 0.9937026761524456
    {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
    >>> d_stat, p_value = gumbel_dist.ks()
    -----KS Test--------
    Statistic = 0.019
    Accept Hypothesis
    P value = 0.9937026761524456
    
  • Interpret the results:
    >>> alpha = 0.05
    >>> if p_value < alpha:
    ...     print(f"Reject the null hypothesis (p-value: {p_value:.4f} < {alpha})")
    ...     print("The data does not follow the fitted Gumbel distribution.")
    ... else:
    ...     print(f"Cannot reject the null hypothesis (p-value: {p_value:.4f} >= {alpha})")
    ...     print("The data may follow the fitted Gumbel distribution.")
    Cannot reject the null hypothesis (p-value: 0.9937 >= 0.05)
    The data may follow the fitted Gumbel distribution.
    
Source code in src\statista\distributions\gumbel.py
def ks(self) -> tuple:
    """Perform the Kolmogorov-Smirnov (KS) test for goodness of fit.

    This method tests whether the data follows the fitted Gumbel distribution using
    the Kolmogorov-Smirnov test. The test compares the empirical CDF of the data
    with the theoretical CDF of the fitted distribution.

    Returns:
        Tuple:
            - 0:
                D statistic: The maximum absolute difference between the empirical and theoretical CDFs.
                The smaller the D statistic, the more likely the data follows the distribution.
                The KS test statistic measures the maximum distance between the empirical CDF
                (Weibull plotting position) and the CDF of the reference distribution.
            - 1:
                p-value The probability of observing a D statistic as extreme as the one calculated, assuming the
                null hypothesis is true (data follows the distribution).
                A high p-value (close to 1) suggests that there is a high probability that the sample comes from
                the specified distribution.
                If p-value < significance level (typically 0.05), reject the null hypothesis.

    Raises:
        ValueError:
            If the distribution parameters have not been estimated.

    Examples:
        - Import necessary libraries and initialize the Gumbel distribution:
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel

            ```
        - Perform KS test:
            ```python
            >>> data = np.loadtxt("examples/data/gumbel.txt")
            >>> gumbel_dist = Gumbel(data)
            >>> gumbel_dist.fit_model()
            -----KS Test--------
            Statistic = 0.019
            Accept Hypothesis
            P value = 0.9937026761524456
            {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
            >>> d_stat, p_value = gumbel_dist.ks()
            -----KS Test--------
            Statistic = 0.019
            Accept Hypothesis
            P value = 0.9937026761524456

            ```
        - Interpret the results:
            ```python
            >>> alpha = 0.05
            >>> if p_value < alpha:
            ...     print(f"Reject the null hypothesis (p-value: {p_value:.4f} < {alpha})")
            ...     print("The data does not follow the fitted Gumbel distribution.")
            ... else:
            ...     print(f"Cannot reject the null hypothesis (p-value: {p_value:.4f} >= {alpha})")
            ...     print("The data may follow the fitted Gumbel distribution.")
            Cannot reject the null hypothesis (p-value: 0.9937 >= 0.05)
            The data may follow the fitted Gumbel distribution.

            ```
    """
    return super().ks()

chisquare() #

Perform the Chi-square test for goodness of fit.

This method tests whether the data follows the fitted Gumbel distribution using the Chi-square test. The test compares the observed frequencies with the expected frequencies under the fitted distribution.

Returns:

Name Type Description
Tuple tuple
  • Chi-square statistic: The test statistic measuring the difference between observed and expected frequencies.
  • p-value: The probability of observing a Chi-square statistic as extreme as the one calculated, assuming the null hypothesis is true (data follows the distribution). If p-value < significance level (typically 0.05), reject the null hypothesis. Returns None if the test fails due to an exception.

Raises:

Type Description
ValueError

If the distribution parameters have not been estimated.

Examples:

  • Perform Chi-square test:
    >>> import numpy as np
    >>> from statista.distributions import Gumbel
    >>> data = np.loadtxt("examples/data/gumbel.txt")
    >>> gumbel_dist = Gumbel(data)
    >>> gumbel_dist.fit_model()
    -----KS Test--------
    Statistic = 0.019
    Accept Hypothesis
    P value = 0.9937026761524456
    {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
    >>> gumbel_dist.chisquare() #doctest: +SKIP
    
  • Interpret the results:
    >>> alpha = 0.05
    >>> if p_value < alpha: #doctest: +SKIP
    ...     print(f"Reject the null hypothesis (p-value: {p_value:.4f} < {alpha})")
    ...     print("The data does not follow the fitted Gumbel distribution.")
    >>> else: #doctest: +SKIP
    ...     print(f"Cannot reject the null hypothesis (p-value: {p_value:.4f} >= {alpha})")
    ...     print("The data may follow the fitted Gumbel distribution.")
    
Source code in src\statista\distributions\gumbel.py
def chisquare(self) -> tuple:
    """Perform the Chi-square test for goodness of fit.

    This method tests whether the data follows the fitted Gumbel distribution using the Chi-square test. The test
    compares the observed frequencies with the expected frequencies under the fitted distribution.

    Returns:
        Tuple:
            - Chi-square statistic:
                The test statistic measuring the difference between observed and expected frequencies.
            - p-value:
                The probability of observing a Chi-square statistic as extreme as the one calculated,
                assuming the null hypothesis is true (data follows the distribution).
                If p-value < significance level (typically 0.05), reject the null hypothesis. Returns None if the test
                fails due to an exception.

    Raises:
        ValueError:
            If the distribution parameters have not been estimated.

    Examples:
        - Perform Chi-square test:
            ```python
            >>> import numpy as np
            >>> from statista.distributions import Gumbel
            >>> data = np.loadtxt("examples/data/gumbel.txt")
            >>> gumbel_dist = Gumbel(data)
            >>> gumbel_dist.fit_model()
            -----KS Test--------
            Statistic = 0.019
            Accept Hypothesis
            P value = 0.9937026761524456
            {'loc': np.float64(0.010101355750222706), 'scale': 1.0313042643102108}
            >>> gumbel_dist.chisquare() #doctest: +SKIP

            ```
        - Interpret the results:
            ```python
            >>> alpha = 0.05
            >>> if p_value < alpha: #doctest: +SKIP
            ...     print(f"Reject the null hypothesis (p-value: {p_value:.4f} < {alpha})")
            ...     print("The data does not follow the fitted Gumbel distribution.")
            >>> else: #doctest: +SKIP
            ...     print(f"Cannot reject the null hypothesis (p-value: {p_value:.4f} >= {alpha})")
            ...     print("The data may follow the fitted Gumbel distribution.")
            ```
    """
    return super().chisquare()

confidence_interval(alpha=0.1, prob_non_exceed=None, parameters=None, plot_figure=False, **kwargs) #

Calculate confidence intervals for the Gumbel distribution quantiles.

This method calculates the upper and lower bounds of the confidence interval for the quantiles of the Gumbel distribution. It can also generate a plot of the confidence intervals.

Parameters:

Name Type Description Default
alpha float

Significance level for the confidence interval. Default is 0.1 (90% confidence interval).

0.1
prob_non_exceed ndarray

Non-exceedance probabilities for which to calculate quantiles. If None, uses the empirical CDF calculated using Weibull plotting positions.

None
parameters dict[str, Any]

If None, uses the parameters provided during initialization. - loc (Numeric): Location parameter of the Gumbel distribution - scale (Numeric): Scale parameter of the Gumbel distribution (must be positive)

{"loc": 0.0, "scale": 1.0}

None
plot_figure bool

Whether to generate a plot of the confidence intervals. Default is False.

False
**kwargs Any

Additional keyword arguments to pass to the plotting function. - fig_size: Size of the figure as a tuple (width, height). Default is (6, 6). - fontsize: Font size for plot labels. Default is 11. - marker_size: Size of markers in the plot.

{}

Returns:

Type Description
tuple[ndarray, ndarray] | tuple[ndarray, ndarray, Figure, Axes]

If plot_figure is False: Tuple containing: - Numpy array of upper bound values - Numpy array of lower bound values

tuple[ndarray, ndarray] | tuple[ndarray, ndarray, Figure, Axes]

If plot_figure is True: Tuple containing: - Numpy array of upper bound values - Numpy array of lower bound values - Figure object - Axes object

Raises:

Type Description
ValueError

If the scale parameter is negative or zero.

Examples:

  • Load data and initialize distribution:
    >>> import numpy as np
    >>> import matplotlib.pyplot as plt
    >>> from statista.distributions import Gumbel
    >>> data = np.loadtxt("examples/data/time_series2.txt")
    >>> parameters = {"loc": 463.8040, "scale": 220.0724}
    >>> gumbel_dist = Gumbel(data, parameters)
    
  • Calculate confidence intervals
    >>> upper, lower = gumbel_dist.confidence_interval(alpha=0.1)
    
  • Generate a confidence interval plot:
    >>> upper, lower, fig, ax = gumbel_dist.confidence_interval(
    ...     alpha=0.1,
    ...     plot_figure=True,
    ...     marker_size=10
    ... )
    >>> plt.show()
    
    image
Source code in src\statista\distributions\gumbel.py
def confidence_interval(  # type: ignore[override]
    self,
    alpha: float = 0.1,
    prob_non_exceed: np.ndarray = None,
    parameters: dict[str, float | Any] = None,
    plot_figure: bool = False,
    **kwargs: Any,
) -> tuple[np.ndarray, np.ndarray] | tuple[np.ndarray, np.ndarray, Figure, Axes]:
    """Calculate confidence intervals for the Gumbel distribution quantiles.

    This method calculates the upper and lower bounds of the confidence interval
    for the quantiles of the Gumbel distribution. It can also generate a plot of the
    confidence intervals.

    Args:
        alpha (float):
            Significance level for the confidence interval. Default is 0.1 (90% confidence interval).
        prob_non_exceed: Non-exceedance probabilities for which to calculate quantiles.
            If None, uses the empirical CDF calculated using Weibull plotting positions.
        parameters (dict[str, Any]):
            If None, uses the parameters provided during initialization.
            - loc (Numeric):
                Location parameter of the Gumbel distribution
            - scale (Numeric):
                Scale parameter of the Gumbel distribution (must be positive)
            ```python
            {"loc": 0.0, "scale": 1.0}
            ```
        plot_figure (bool):
            Whether to generate a plot of the confidence intervals. Default is False.
        **kwargs:
            Additional keyword arguments to pass to the plotting function.
                - fig_size:
                    Size of the figure as a tuple (width, height). Default is (6, 6).
                - fontsize:
                    Font size for plot labels. Default is 11.
                - marker_size:
                    Size of markers in the plot.

    Returns:
        If plot_figure is False:
            Tuple containing:
            - Numpy array of upper bound values
            - Numpy array of lower bound values
        If plot_figure is True:
            Tuple containing:
            - Numpy array of upper bound values
            - Numpy array of lower bound values
            - Figure object
            - Axes object

    Raises:
        ValueError: If the scale parameter is negative or zero.

    Examples:
        - Load data and initialize distribution:
            ```python
            >>> import numpy as np
            >>> import matplotlib.pyplot as plt
            >>> from statista.distributions import Gumbel
            >>> data = np.loadtxt("examples/data/time_series2.txt")
            >>> parameters = {"loc": 463.8040, "scale": 220.0724}
            >>> gumbel_dist = Gumbel(data, parameters)

            ```
        - Calculate confidence intervals
            ```python
            >>> upper, lower = gumbel_dist.confidence_interval(alpha=0.1)

            ```
        - Generate a confidence interval plot:
            ```python
            >>> upper, lower, fig, ax = gumbel_dist.confidence_interval(
            ...     alpha=0.1,
            ...     plot_figure=True,
            ...     marker_size=10
            ... )
            >>> plt.show()

            ```
        ![image](./../../_images/distributions/gumbel-confidence-interval.png)
    """
    # if no parameters are provided, take the parameters provided in the class initialization.
    if parameters is None:
        parameters = self.parameters

    scale = parameters.get("scale")
    if scale is None or scale <= 0:
        raise ValueError(SCALE_PARAMETER_ERROR)

    if prob_non_exceed is None:
        prob_non_exceed = PlottingPosition.weibul(self.data)

    qth = self._inv_cdf(prob_non_exceed, parameters)
    y = [-np.log(-np.log(j)) for j in prob_non_exceed]
    std_error = [
        (scale / np.sqrt(len(self.data)))
        * np.sqrt(1.1087 + 0.5140 * j + 0.6079 * j**2)
        for j in y
    ]
    v = norm.ppf(1 - alpha / 2)
    q_upper = np.array([qth[j] + v * std_error[j] for j in range(len(qth))])
    q_lower = np.array([qth[j] - v * std_error[j] for j in range(len(qth))])

    if plot_figure:
        # if the prob_non_exceed is given, check if the length is the same as the data
        if len(prob_non_exceed) != len(self.data):
            raise ValueError(PROB_NON_EXCEEDENCE_ERROR)

        fig, ax = Plot.confidence_level(
            qth, self.data, q_lower, q_upper, alpha=alpha, **kwargs  # type: ignore[arg-type]
        )
        return q_upper, q_lower, fig, ax
    else:
        return q_upper, q_lower

plot(fig_size=(10, 5), xlabel=PDF_XAXIS_LABEL, ylabel='cdf', fontsize=15, cdf=None, parameters=None) #

Probability plot.

Probability Plot method calculates the theoretical values based on the Gumbel distribution parameters, theoretical cdf (or weibul), and calculates the confidence interval.

Parameters:

Name Type Description Default
fig_size tuple[float, float]

tuple, Default is (10, 5). Size of the figure.

(10, 5)
cdf ndarray | list | None

[np.ndarray] theoretical cdf calculated using weibul or using the distribution cdf function.

None
fig_size tuple[float, float]

[tuple] Default is (10, 5)

(10, 5)
xlabel str

[str] Default is "Actual data"

PDF_XAXIS_LABEL
ylabel str

[str] Default is "cdf"

'cdf'
fontsize int

[float] Default is 15.

15
parameters dict[str, float | Any]

dict[str, str] {"loc": val, "scale": val} - loc: [numeric] location parameter of the gumbel distribution. - scale: [numeric] scale parameter of the gumbel distribution.

None

Returns:

Name Type Description
Figure Figure

matplotlib figure object

tuple[Axes, Axes]

tuple[Axes, Axes]: matplotlib plot axes

Examples:

  • Instantiate the Gumbel class with the data and the parameters:
    >>> import matplotlib.pyplot as plt
    >>> data = np.loadtxt("examples/data/time_series2.txt")
    >>> parameters = {"loc": 463.8040, "scale": 220.0724}
    >>> gumbel_dist = Gumbel(data, parameters)
    
  • To calculate the confidence interval, we need to provide the confidence level (alpha).
    >>> fig, ax = gumbel_dist.plot()
    >>> print(fig)
    Figure(1000x500)
    >>> print(ax)
    (<Axes: xlabel='Actual data', ylabel='pdf'>, <Axes: xlabel='Actual data', ylabel='cdf'>)
    
    gumbel-plot
Source code in src\statista\distributions\gumbel.py
def plot(
    self,
    fig_size: tuple[float, float] = (10, 5),
    xlabel: str = PDF_XAXIS_LABEL,
    ylabel: str = "cdf",
    fontsize: int = 15,
    cdf: np.ndarray | list | None = None,
    parameters: dict[str, float | Any] = None,
) -> tuple[Figure, tuple[Axes, Axes]]:  # pylint: disable=arguments-differ
    """Probability plot.

    Probability Plot method calculates the theoretical values based on the Gumbel distribution
    parameters, theoretical cdf (or weibul), and calculates the confidence interval.

    Args:
        fig_size: tuple, Default is (10, 5).
            Size of the figure.
        cdf: [np.ndarray]
            theoretical cdf calculated using weibul or using the distribution cdf function.
        fig_size: [tuple]
            Default is (10, 5)
        xlabel: [str]
            Default is "Actual data"
        ylabel: [str]
            Default is "cdf"
        fontsize: [float]
            Default is 15.
        parameters: dict[str, str]
            {"loc": val, "scale": val}
            - loc: [numeric]
                location parameter of the gumbel distribution.
            - scale: [numeric]
                scale parameter of the gumbel distribution.

    Returns:
        Figure:
            matplotlib figure object
        tuple[Axes, Axes]:
            matplotlib plot axes

    Examples:
    - Instantiate the Gumbel class with the data and the parameters:
        ```python
        >>> import matplotlib.pyplot as plt
        >>> data = np.loadtxt("examples/data/time_series2.txt")
        >>> parameters = {"loc": 463.8040, "scale": 220.0724}
        >>> gumbel_dist = Gumbel(data, parameters)

        ```
    - To calculate the confidence interval, we need to provide the confidence level (`alpha`).
        ```python
        >>> fig, ax = gumbel_dist.plot()
        >>> print(fig)
        Figure(1000x500)
        >>> print(ax)
        (<Axes: xlabel='Actual data', ylabel='pdf'>, <Axes: xlabel='Actual data', ylabel='cdf'>)

        ```
        ![gumbel-plot](./../../_images/gumbel-plot.png)
    """
    # if no parameters are provided, take the parameters provided in the class initialization.
    if parameters is None:
        parameters = self.parameters

    scale = parameters.get("scale")

    if scale is None or scale <= 0:
        raise ValueError(SCALE_PARAMETER_ERROR)

    if cdf is None:
        cdf = PlottingPosition.weibul(self.data)
    else:
        # if the cdf is given, check if the length is the same as the data
        if len(cdf) != len(self.data):
            raise ValueError(
                "Length of cdf does not match the length of data, use the `PlottingPosition.weibul(data)` "
                "to the get the non-exceedance probability"
            )

    q_x = np.linspace(
        float(self.data_sorted[0]), 1.5 * float(self.data_sorted[-1]), 10000
    )
    pdf_fitted: Any = self.pdf(parameters=parameters, data=q_x)
    cdf_fitted: Any = self.cdf(parameters=parameters, data=q_x)

    fig, ax = Plot.details(
        q_x,
        self.data,
        pdf_fitted,
        cdf_fitted,
        cdf,
        fig_size=fig_size,
        xlabel=xlabel,
        ylabel=ylabel,
        fontsize=fontsize,
    )

    return fig, ax