Skip to content

Instantly share code, notes, and snippets.

@bharatbhole
Created February 4, 2012 14:58
Show Gist options
  • Save bharatbhole/1738304 to your computer and use it in GitHub Desktop.
Save bharatbhole/1738304 to your computer and use it in GitHub Desktop.
Combine modifications into a single script
# Combine all modifications in a single script
plt <- ggplot() + geom_line(data=df, aes(x=xcol, y=ycol),
color='steelblue', size=1) +
xlab("Observation") +
ylab("Value") +
opts(panel.background=theme_rect(fill='linen'))
print(plt)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment