Replies: 2 comments 1 reply
-
I think I found it, I think it is:
CDF returns My next question is: Is it possible to calculate this probability within a specific return period? The question I want to answer is "What is the probability of achieving Thanks! |
Beta Was this translation helpful? Give feedback.
-
You are correct. Also don't forget to factor in rate of extremes when converting return period into probability: pyextremes/src/pyextremes/eva.py Lines 1230 to 1259 in 3706ff8 Regarding your second question, extreme events are assumed to be random IID (Independent and Identically Distributed) so it doesn't matter which year you look at. The question you can answer though is |
Beta Was this translation helpful? Give feedback.
-
Hi, thank you for the great effort to bring Extreme Value Analysis to Python! It is extremely useful to have something like this in Python as it plays so well with all other data science tools that are around.
I'm following Fawcett's tutorial/lectures, and in one of his example websites he shows an example of "Choose a Wave height to find the probability of exceeding it every year", this translates to calculating$P(X > value)$ , where $value$ is the height of a wave in feet.
I'm trying to figure out how to achieve the same in
pyextremes
. I looked at the tutorials and the code but I can't figure out a way, but I'm sure that one must exist. Can you please show me how?Thanks again for the great work!
Beta Was this translation helpful? Give feedback.
All reactions