I have imported the below excel file into the RStudio
My goal is to display in a facet of 4 different barplots with x axis representing the categorical variable of algorithms, and y displays the percentages each time as they are counted already in columns Question_1,2,3,4. I use this simple R code to plot just one barplot
ggplot(data = R_Analysis_draft, mapping = aes(x = algorithms,y = Question_1)) +
geom_col()
How can I display all 4 in the same facet since they all have the same categorical variable algorithms
putting a header on top of each one different Question and using the percentages?