#r #ggplot2 #label #facet-grid
#r #ggplot2 #метка #facet-grid
Вопрос:
Я пытаюсь изменить имена меток в facet_grid
, а также сделать так, чтобы мои данные отображались в процентах. Однако это не работает.
aktivity <- ggplot(data=zaposlenost_prema_aktivnosti,
mapping = aes(skrIndikator,Vrednost))
aktivity geom_col(mapping=aes(x=skrIndikator, y=Vrednost, fill=skrIndikator))
facet_grid(nPol~nVrTacka, labeller = "label_one")
guides(fill=guide_legend(title="Description"))
theme(axis.text.x = element_blank())
labs(x="Description", y="Value", title = "Employment by activity and gender", subtitle = "Statistically obtained by a poll", caption = "source: Republic Bureau for Statistics")