In [ ]:
#importing what we'll need
import numpy as np
import pandas as pd
%matplotlib inline
import matplotlib.pyplot as plt
In [ ]:
data = pd.read_csv("http://web_address.com/filename.csv")
In [ ]:
data.head(3)
In [ ]:
# Set variables for scatter plot
#
x = data.OneColumnName
y = data.AnotherColumnName
# make the graph
plt.scatter(x,y)
plt.title('title')
plt.xlabel('label')
plt.ylabel('label')
# This actually shows the plot
plt.show()
In [ ]:
plt.hist(data.ColumnName, bins=10, range=[0,100])