Update report.Rmd

Added last 30 rows in report
This commit is contained in:
2021-10-22 21:47:15 +02:00
parent 3f7f31992e
commit d8a754288c
+8
View File
@@ -23,3 +23,11 @@ p_temperature <- ggplot(df, aes(x=date, y=temperature, group=name, color=name))
p_temperature
```
## Last 30 rows
```{r}
most_recent <- tail(df, n=30)
most_recent <- most_recent[order(rev(most_recent$date)),]
knitr::kable(most_recent, row.names = F)
```