I am trying to plot a logscaled, neighbored, barplot with ggplot().
Code snippet:
ggplot(df, aes(benchmarks, runtime, fill=env))+
geom_bar(stat="identity", position="dodge") +
scale_y_log10()
Output:
The boxes' origin is at '1', but I want them at '0.01', much like this barplot:
What am I doing wrong?