Plot 01 test
In [1]:
Copied!
"""
Monthly example
===================================
This could be an example for the monthly version of EnergyScope.
"""
"""
Monthly example
===================================
This could be an example for the monthly version of EnergyScope.
"""
Out[1]:
'\nMonthly example\n===================================\n\nThis could be an example for the monthly version of EnergyScope.\n'
In [2]:
Copied!
import numpy as np
import matplotlib.pyplot as plt
import numpy as np
import matplotlib.pyplot as plt
In [3]:
Copied!
x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
x = np.linspace(0, 2 * np.pi, 100)
y = np.sin(x)
In [ ]:
Copied!
In [5]:
Copied!
print('This example shows a sin plot!')
print('This example shows a sin plot!')
This example shows a sin plot!