Skip to content

Instantly share code, notes, and snippets.

@cmungall
Created March 30, 2014 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmungall/9865995 to your computer and use it in GitHub Desktop.
Save cmungall/9865995 to your computer and use it in GitHub Desktop.
Plot diffability
library(ggplot2)
the.data <- read.table( header=TRUE, sep=",", "foo.OUT")
ggplot(the.data, aes( x = numAxiomsDeleted, y = diffsize, shape = fmt, label = fmt, group = fmt ) ) +
scale_shape_discrete(solid=T, legend=T) +
scale_y_log10() +
scale_x_log10() +
geom_point(aes(colour = fmt)) +
geom_smooth()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment