Skip to content

Instantly share code, notes, and snippets.

@ybenjo
Created August 17, 2012 01:53
Show Gist options
  • Save ybenjo/3375201 to your computer and use it in GitHub Desktop.
Save ybenjo/3375201 to your computer and use it in GitHub Desktop.
plot
library('ggplot2')
data <- read.table("/tmp/ret.csv", header = T, sep = ",")
data$topic_id <- as.factor(data$topic_id)
qplot(timestamp, gamma, data = data, color = topic_id)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment