Skip to content

Instantly share code, notes, and snippets.

@sangheestyle
Created October 23, 2014 03:16
Show Gist options
  • Save sangheestyle/8f304fc53e49da69dd20 to your computer and use it in GitHub Desktop.
Save sangheestyle/8f304fc53e49da69dd20 to your computer and use it in GitHub Desktop.
Plot
from pylab import *
import pandas as pd
df =pd.read_csv("PS04_1a.dat", names=range(1,35))
p1 = pd.DataFrame({'max': df.max(), 'mean':df.mean()})
p1.plot(marker='.', markersize=10, title='')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment