Added System Time
In order to see when the document was created, we add the system time.
This commit is contained in:
@@ -11,6 +11,10 @@ colnames(df) <- c("date", "name", "topic", "humidity", "temperature", "presure",
|
|||||||
df$date <- as.POSIXct(df$date)
|
df$date <- as.POSIXct(df$date)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```{r echo=FALSE}
|
||||||
|
Sys.time()
|
||||||
|
```
|
||||||
|
|
||||||
## Humidity
|
## Humidity
|
||||||
```{r}
|
```{r}
|
||||||
p_humidity <- ggplot(df, aes(x=date, y=humidity, group=name, color=name)) + geom_line()
|
p_humidity <- ggplot(df, aes(x=date, y=humidity, group=name, color=name)) + geom_line()
|
||||||
|
|||||||
Reference in New Issue
Block a user