In [1]:
%matplotlib inline
from ggplot import *
import numpy as np
In [2]:
qplot(diamonds.price)
Out[2]:
In [3]:
qplot(diamonds.carat, diamonds.price)
Out[3]:
In [4]:
x = range(100)
y = range(100)
qplot(x, y)
Out[4]:
In [5]:
qplot(np.random.normal(0, 1, 10000))
Out[5]:
In [ ]: