I am trying to get a bar chart with parties' EU score on x and the percentage of votes each party got on y. The variable Vote_survey is already aggregated power votes. Here is my code:
ExpertSurvey=read_excel("Expert Survey.xlsx")
ggplot(ExpertSurvey)+
geom_bar(aes(x=ExpertSurvey$"EU_score", y=ExpertSurvey$"Vote_survey"), stat = "identity")
For some reason, I am getting a a plot with no bars... Where could I be making a mistake here?