-
Is there any way to use pyextremes threshold selection for non time series data? I'm interested in modelling the tail distribution for a series of values with no datetime or timedelta, it seems that mean residual life plot works without the datetime index but not the rest of the plots in the threshold selection examples. What parameters should I pass in for the other plots or how should I modify my data series if I want to apply the analysis to the whole series and time granularity doesn't matter? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
What is the question you are trying to answer by performing this analysis? For example, extreme value analysis (pyextremes is a framework for univariate EVA) answers the following question:
Or, the inverse of the above:
And here are some practical examples:
|
Beta Was this translation helpful? Give feedback.
I think I more or less understand what you are doing. You have a sample of some data and you want to model its tail. But, while you do so, you need to find the value to cut the sample into "body" and tail. I think before you do that you need to understand what model (distribution) you are choosing and why.
You shouldn't be using GPD or GEVD just because they model extreme values and visually look like a good fit for your data. Both of those models are backed with rigorous mathematical reasoning for why they are applicable in these specific cases:
The goal of POT is to …