зеркало из https://github.com/microsoft/wpa.git
fix: plot quality of plot-area
Affects the plot-area output of workpatterns_classify()
This commit is contained in:
Родитель
d3d6380eb4
Коммит
4c8ca2d581
|
@ -282,6 +282,8 @@ workpatterns_classify_bw <- function(data,
|
|||
dplyr::group_by(Date, Personas) %>%
|
||||
dplyr::summarise(n = dplyr::n_distinct(PersonId)) %>%
|
||||
dplyr::mutate(per = n / sum(n)) %>%
|
||||
tidyr::complete(Date, Personas, fill = list(0)) %>%
|
||||
mutate(per = tidyr::replace_na(per, 0)) %>%
|
||||
ggplot(aes(x=Date, y=per, fill=Personas)) +
|
||||
geom_area() +
|
||||
theme_wpa_basic() +
|
||||
|
|
Загрузка…
Ссылка в новой задаче