In [1]:
from ggplot import *
%matplotlib inline

In [2]:
chopsticks.head()


Out[2]:
food_pinching_effeciency individual chopstick_length
0 19.55 1 180
1 27.24 2 180
2 28.76 3 180
3 31.19 4 180
4 21.91 5 180

In [3]:
ggplot(chopsticks, aes(x='chopstick_length', y='food_pinching_effeciency')) + \
    geom_jitter()


Out[3]:
<ggplot: (287653037)>

In [4]:
ggplot(chopsticks, aes(x='chopstick_length', y='food_pinching_effeciency')) + \
    geom_jitter() + \
    stat_smooth()


Out[4]:
<ggplot: (288451521)>

In [6]:
ggplot(diamonds, aes(x='carat', y='price')) + geom_jitter()


Out[6]:
<ggplot: (288413893)>

In [8]:
ggplot(diamonds, aes(x='carat', y='price')) + \
    geom_jitter(color='steelblue')


Out[8]:
<ggplot: (288917785)>

In [9]:
ggplot(diamonds, aes(x='carat', y='price')) + \
    geom_jitter(alpha=1/100.)


Out[9]:
<ggplot: (293954037)>

In [ ]: