import matplotlib.pyplot as plt
import matplotlib.pyplot as plt
In [19]:
import matplotlib.pyplot as plt
In [20]:
import numpy as np
In [32]:
x=np.linspace(1,6,10 )
In [36]:
%matplotlib inline
In [38]:
x
Out[38]:
In [39]:
y
Out[39]:
In [41]:
plt.plot(x,y,"r")
Out[41]:
In [43]:
plt.plot(x, y, 'G')
Out[43]:
In [4]:
%matplotlib inline
In [45]:
plt.xlabel('X Axis Title Here')
plt.ylabel('Y Axis Title Here')
plt.title('String Title Here')
Out[45]:
In [44]:
plt.xlabel(" my marks")
Out[44]:
In [ ]:
pl
No comments:
Post a Comment