Plotting Return Values for comparison between GPD and GEVD Models #82
FranciscoSimoes22
started this conversation in
General
Replies: 1 comment
-
You can plot them onto the same axes, you should use the pyextremes/src/pyextremes/eva.py Lines 1332 to 1398 in ce530c4 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Dear George
I need to plot the Return_Values from GPD model and GEVD Model on the same graph for a visual comparison of both methods.
For instance:
Plotting Return_values
model_BM.plot_return_values(
return_period=np.logspace(0.1, 2, 100),
return_period_size="365.2425D",
alpha=0.95,
)
plt.show()
and
Plotting_Return_values
model_POT.plot_return_values(
return_period = np.logspace(0.1, 2, 100),
return_period_size="365.2425D",
alpha=0.95,
)
plt.show()
My question is: I don t need to plot the confidence bounds, i just need both the return_periods "line" on the same graph. Is this possible?
Thank you
Beta Was this translation helpful? Give feedback.
All reactions