Please have a look at this plot
Hi,
first up: I'am pretty new to R and programming in general. I want to reproduce a analysis of data with my own code. I would like to represent my data with ggplot 2 in r studio in a similar way (please take a look at the picture). I have already extracted to mean values in a seperate data set.
What kind of visualisation could that be? I have tried looking at the ggplot2 cheatsheet but could not figure it out.
Thanks for your help :)
I'am trying to extract the mean data from the set like this:
ean_values_polVertrauen <- polVertrauen %>%
summarize(
BUNDESVERFASSUNGSGERICHT = mean(pt02),
BILDUNG = mean(pt11),
POLIZEI = mean(pt14),
JUSTIZ = mean(pt08),
GESUNDHEITSWESEN = mean(pt01),
VERWALTUNG = mean(pt04),
BUNDESTAG = mean(pt03),
BUNDESREGIERUNG = mean(pt12),
EUROPKOMMISSION = mean(pt19),
EUROPPARLAMENT = mean(pt20),
PARTEIEN = mean(pt15),
)
my output for
mean_values_polVertrauen
is
variable value
1 BUNDESVERFASSUNGSGERICHT 4.249473
2 BILDUNG 4.200120
3 POLIZEI 3.950045
4 JUSTIZ 3.579898
5 GESUNDHEITSWESEN 3.941920
6 VERWALTUNG 3.486909
7 BUNDESTAG 3.058381
8 BUNDESREGIERUNG 3.055673
9 EUROPKOMMISSION 2.512489
10 EUROPPARLAMENT 2.553416
11 PARTEIEN 2.190190