removed week chart

This commit is contained in:
Ben Varick 2023-12-03 13:56:36 -06:00
parent 743f3d8d59
commit a64d577abb
Signed by: ben
SSH Key Fingerprint: SHA256:jWnpFDAcacYM5aPFpYRqlsamlDyKNpSj3jj+k4ojtUo
2 changed files with 0 additions and 19 deletions

View File

@ -108,21 +108,6 @@ update_data <- function(){
y = NULL, y = NULL,
fill = NULL) fill = NULL)
plot_1week <- ggplot(data = values) +
geom_tile(aes(x = time + seconds(round(as.numeric(difftime(end_time, time, unit = "secs")))/2),
y = entity_id,
width = seconds(round(as.numeric(difftime(end_time, time, unit = "secs")))),
height = 0.5,
fill = status)) +
scale_y_discrete(breaks = entities$entity_id, labels = entities$name) +
scale_x_datetime(date_breaks = "1 day", date_labels = '%A', date_minor_breaks = "4 hours") +
scale_fill_manual(values = colors$color) +
theme(axis.text.x = element_text(angle = 30, vjust = 0.5)) +
labs(title = "The past week",
x = NULL,
y = NULL,
fill = NULL)
plot_1week_days <- ggplot(data = values %>% plot_1week_days <- ggplot(data = values %>%
filter(as.Date(time, tz = "America/Chicago") == as.Date(end_time, tz = "America/Chicago")) %>% filter(as.Date(time, tz = "America/Chicago") == as.Date(end_time, tz = "America/Chicago")) %>%
mutate(date = as.Date(time, tz = "America/Chicago")) %>% mutate(date = as.Date(time, tz = "America/Chicago")) %>%

View File

@ -43,10 +43,6 @@ This site tracks the washing machine and dryer of our building. My hope is that
plot(plot_1day) plot(plot_1day)
``` ```
```{r plot_1week, echo=FALSE}
plot(plot_1week)
```
```{r plot_1week_days, echo=FALSE} ```{r plot_1week_days, echo=FALSE}
plot(plot_1week_days) plot(plot_1week_days)
``` ```