I hadn't plotted much with R so far, I want to facet the plot with free scales and spaces. What I tried so far is
ggplot(df3, aes(x = Scores, y = Value)) +
geom_bar( aes(fill=Input),
stat = "identity", position = position_dodge()
) + scale_fill_manual(values = c("#EFC000FF","#868686FF", "#0073C2FF", "#CD534CFF"))+ theme_pubr() +
facet_grid(. ~ Group, scales = "free", space = "free_x")
So I cant get the free y scales. This is probably trivial, but I didn't find anything that compares.