In [22]:
%matplotlib inline
import pandas as pd
import numpy as np
import seaborn


a = np.array([[1.630,1.630,1.630,1.630,1.630],[1.347,1.318,1.311,1.298,1.292],[1.306,1.275,1.270,1.258,1.255]]).T
df = pd.DataFrame(a, columns=['GFS','Linear','AeroMetTree'])
df.index = [1000, 500, 250, 100, 50]

df.plot(title='RMSE Paris Charles de Gaulle', ylim=(1.2,1.7), xticks=[1000,500,250,100,50])


Out[22]:
<matplotlib.axes._subplots.AxesSubplot at 0x11346e490>

In [23]:


In [23]:
a = np.array([[1.416,1.416,1.416,1.416,1.416],[1.384,1.345,1.339,1.327,1.319],[1.344,1.304,1.302,1.300,1.296]]).T
df = pd.DataFrame(a, columns=['GFS','Linear','AeroMetTree'])
df.index = [1000, 500, 250, 100, 50]

df.plot(title='RMSE Berlin Tegel', ylim=(1.2,1.5), xticks=[1000,500,250,100,50])


Out[23]:
<matplotlib.axes._subplots.AxesSubplot at 0x11358c950>

In [ ]: