Created
May 13, 2014 18:14
-
-
Save denten/7f37e8f54f6ad6e78b51 to your computer and use it in GitHub Desktop.
plotting with pandas
This file contains 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
import pandas as pd | |
# check out other read methods http://pandas.pydata.org/pandas-docs/stable/io.html | |
df = pd.read_csv('data/network-csv/network.csv') | |
df.describe() | |
df.plot(x='col_name_1', y='col_name_2', style='o') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment