Skip to content

Instantly share code, notes, and snippets.

@jrmontag
Last active August 29, 2015 13:57
Show Gist options
  • Save jrmontag/9470730 to your computer and use it in GitHub Desktop.
Save jrmontag/9470730 to your computer and use it in GitHub Desktop.
figsize handle in ggplot?
# previous experience...
# cell
import pandas as pd
...
# cell
%pylab inline
# use pd helper, plot()
df.plot( ...
, figsize=(12,6) # can't find where this makes a mpl/plt call in pd source
, ...
)
----
# currently...
# cell
from ggplot import *
...
# cell
ggplot(df
, ... # does something in here reach into e.g. for "figsize" ?
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment