In [7]:
import os
import numpy as np
In [2]:
print(os.path.dirname('./'))
In [ ]:
import matplotlib.pyplot as plt
In [14]:
x = np.arange(2, 10, .1)
y = np.arange(18, 10, -.1)
In [15]:
plt.plot(x[:10],y[:10])
Out[15]:
In [ ]: