Skip to content

Instantly share code, notes, and snippets.

@mcroydon
Created November 23, 2009 18:40
Show Gist options
  • Save mcroydon/241265 to your computer and use it in GitHub Desktop.
Save mcroydon/241265 to your computer and use it in GitHub Desktop.
# First column is a timestamp, second column is a response time. Example:
# "time","response"
# 2009-11-23 07:34:01.778955,0.599255
data <- read.csv("~/response_log.csv", header=TRUE)
processed_time <- transform(data$time, strptime(data$time, "%Y-%m-%d %H:%M:%S"))
plot(processed_time, data$response)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment