Guest User

Untitled

a guest
Apr 20th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. # First column is a timestamp, second column is a response time. Example:
  2. # "time","response"
  3. # 2009-11-23 07:34:01.778955,0.599255
  4. data <- read.csv("~/response_log.csv", header=TRUE)
  5. processed_time <- transform(data$time, strptime(data$time, "%Y-%m-%d %H:%M:%S"))
  6. plot(processed_time, data$response)
Add Comment
Please, Sign In to add comment