Skip to content

Instantly share code, notes, and snippets.

@bharatbhole
Created February 4, 2012 03:30
Show Gist options
  • Save bharatbhole/1734957 to your computer and use it in GitHub Desktop.
Save bharatbhole/1734957 to your computer and use it in GitHub Desktop.
basic plot default options
# Plot normalVariate data in data frame, df, using ggplot2
# Most basic plot without customizing any options.
plt <- ggplot() + geom_line(data=df, aes(x=xcol, y=ycol))
print(plt)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment