You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The labels appear on top of the line currently. Ideally when labels = "right", I'd want the labels to appear on the right of the line. Additionally, it would be great if the labels would dodge each other much like the n.dodge = 2 feature in guide_axis.
library(tidyverse)
#> Warning: package 'tidyverse' was built under R version 4.0.2
library(feasts)
#> Warning: package 'feasts' was built under R version 4.0.2#> Loading required package: fabletools#> Warning: package 'fabletools' was built under R version 4.0.2tsibbledata::aus_retail %>%
filter(
State=="Victoria",
Industry=="Cafes, restaurants and catering services"
) %>%
gg_season(Turnover, labels="right")
Created on 2020-08-14 by the reprex package (v0.3.0.9001)
These labels are now aligned outward, however the panel size does not update for geom_text() elements, and so some manual limit expansion is needed based on the number of characters.
The labels appear on top of the line currently. Ideally when
labels = "right"
, I'd want the labels to appear on the right of the line. Additionally, it would be great if the labels would dodge each other much like then.dodge = 2
feature inguide_axis
.Created on 2020-08-14 by the reprex package (v0.3.0.9001)
Session info
The text was updated successfully, but these errors were encountered: