A Python function for plotting seasonal variation of an output with a depth profile #606
Benjamin-Maglio
started this conversation in
Ground
Replies: 1 comment
-
Wow, that's an awesome example! |
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
-
Comparing simulation outputs that contain layers of varying depth to each other and against empirical data is required. This function is for doing just that.
We assume you have outputs read as
pandas.Dataframe
usingload_trsc_dataframe()
fromoutput_utils.py
, and while it will be possible to run this in the terminal, this has been designed for use in Jupyter Notebook.You may generate a trumpet diagram by plotting mean annual (
months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
) values:Beta Was this translation helpful? Give feedback.
All reactions