You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Editthe file called "init.py" (found in the folder ...\Lib\site-packages\meteogrampy )
and change all lines with
except KeyError, e;
to
except KeyError as e
Then in the example change
for x in xrange(len(temperature_data) - 1):
to
for x in range(len(temperature_data) - 1):
The meteogram look different from the example as different data is used.
Running the code inside Jupyter after installing Matplotlib and meteogram-py I get this error:
`
File "/opt/anaconda3/lib/python3.7/site-packages/meteogrampy/init.py", line 10
SyntaxError: invalid syntax
`
The text was updated successfully, but these errors were encountered: