Added System Time

In order to see when the document was created, we add the system time.
This commit is contained in:
2021-10-22 21:56:13 +02:00
parent d8a754288c
commit 9fb63a3cb3
+4
View File
@@ -11,6 +11,10 @@ colnames(df) <- c("date", "name", "topic", "humidity", "temperature", "presure",
df$date <- as.POSIXct(df$date)
```
```{r echo=FALSE}
Sys.time()
```
## Humidity
```{r}
p_humidity <- ggplot(df, aes(x=date, y=humidity, group=name, color=name)) + geom_line()