Jupyter notebook post

less than 1 minute read

import numpy as np
import pandas as pd

create numpy array

a = np.arange(1,200,4)
df = pd.DataFrame(a)
df.head()
0
0 1
1 5
2 9
3 13
4 17
df.plot()
<AxesSubplot:>

png


Leave a comment