Created
October 23, 2014 03:16
-
-
Save sangheestyle/8f304fc53e49da69dd20 to your computer and use it in GitHub Desktop.
Plot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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