I have dataframe with 2232803 rows and two columns 'x'
, 'y'
, I want to draw line plot. x-axis x and y-axis y . I tried some ways but when i plot my computer stuck maybe file is so big , my computer have 8gb RAM. is there anyway to plot that big file
i tried this:
plt.plot(df['x'].values,df['y'].values)