I got the following data set:
Skalen | Werte | |
---|---|---|
1 | Allgemeine Beanspruchung | 1.55 |
2 | Emotionale Beanspruchung | 1.59 |
3 | Soziale Beanspruchung | 1.79 |
4 | Konflikte/Leistungsdruck | 1.76 |
5 | Übermüdung | 1.79 |
6 | Energielosigkeit | 2.13 |
7 | Somatische Beanspruchung | 1.52 |
8 | Erfolg | 2.74 |
9 | Soziale Erholung | 3.26 |
10 | Somatische Erholung | 3.41 |
11 | Allgemeine Erholung | 3.84 |
12 | Schlaf | 4.29 |
13 | Gestörte Pause | 1.07 |
14 | Emotionale Erschöpfung | 1.36 |
15 | Verletzungsanfälligkeit | 1.59 |
16 | In-Form-sein | 3.28 |
17 | Persönliche Verwirklichung | 2.42 |
18 | Selbstwirksamkeitsüberzeugung | 3.29 |
19 | Selbstregulation | 3.41 |
And I used this code to plot it as a vertical line graph
ggplot(data=df_ebf, aes(x=Skalen, y=Werte,group="")) +
geom_line() +
geom_point() +
coord_flip()
The values belong to the right description on the y-axis. But the order is reverse alphabetically. I want that the order is like it is in the dataset.