Skip to content

Instantly share code, notes, and snippets.

@denten
Created May 13, 2014 18:14
Show Gist options
  • Save denten/7f37e8f54f6ad6e78b51 to your computer and use it in GitHub Desktop.
Save denten/7f37e8f54f6ad6e78b51 to your computer and use it in GitHub Desktop.
plotting with pandas
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