How to use ixmp.utils.diff()
?
#636
Answered
by
khaeru
cheolhung
asked this question in
MESSAGE modeling
-
Dear Developer, I'm just wondering how to use 'ixmp utility, diff.' I appreciate any help you can provide. |
Beta Was this translation helpful? Give feedback.
Answered by
khaeru
Aug 3, 2022
Replies: 1 comment
-
Sorry for the brevity of the docs here. An example would indeed help.
So you should do something like: # Iterate over parameter names and data
for name, data in diff(base, scen):
print(name)
print(data)
# Any other operations on `name` or `data`, according to your needs |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cheolhung
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sorry for the brevity of the docs here. An example would indeed help.
So you should do something like: