Skip to content

Instantly share code, notes, and snippets.

@ruslander
Last active April 12, 2016 03:30
Show Gist options
  • Save ruslander/eed8fa25ce06edadbf4e3efa80325c02 to your computer and use it in GitHub Desktop.
Save ruslander/eed8fa25ce06edadbf4e3efa80325c02 to your computer and use it in GitHub Desktop.
plotting 1 server
install.packages("ggplot2")
require("ggplot2")
timeline.hb.el <- read.csv("C:/Users/Ruslan/Desktop/timeline-hb-el.txt")
ggplot(timeline.hb.el, aes(time, timeout, color=timeout, shape=timeout)) +
geom_point()
time,timeout
2016-04-11 22:15:06.0593,S
2016-04-11 22:15:06.6463,D
2016-04-11 22:15:06.9471,S
2016-04-11 22:15:07.6532,D
2016-04-11 22:15:07.7177,S
2016-04-11 22:15:08.3552,D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment