Skip to content

Instantly share code, notes, and snippets.

@svenski
Created August 4, 2014 16:14
Show Gist options
  • Save svenski/db04683877477df1cff4 to your computer and use it in GitHub Desktop.
Save svenski/db04683877477df1cff4 to your computer and use it in GitHub Desktop.
Office temp
Tim Group office temperature
============================
```{r tempRead, echo = FALSE, message = FALSE, warning = FALSE}
library(ggplot2)
library(data.table)
library(lubridate)
tt <- (read.csv("temp.csv", header = FALSE)
tt$V1 <- dmy_hm(tt$V1)
ggplot(tt, aes(V1, V2)) + geom_point() + xlab("Time") + ylab("Temp (C)")
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment