An error occurred while loading the file. Please try again.
-
Le Roux Erwan authored
[GEV] add computation of the mean & variance. modify gev_estimator. add function visualize_summary_of_annual_values_and_stationary_gev_fit: to quickly visualize the repartition of the main empirical indicators and corresponding stationary gev indicators.
74f0849c
import numpy as np
from extreme_estimator.margin_fits.gev.gev_params import GevParams
from extreme_estimator.margin_fits.margin_fits_utils import spatial_extreme_gevmle_fit
class GevFit(object):
def __init__(self, x_gev: np.ndarray, block_size=None):
assert np.ndim(x_gev) == 1
assert len(x_gev) > 1
self.x_gev = x_gev
@property
def gev_params(self) -> GevParams:
raise NotImplementedError