I'm new to coding and can't find an answer to my question online. I need to plot a graph with 2 lines with a log scale to bring the 2 data sets closer together. I have worked out the code for the 2 lines but cant make it work with a log scale, please help :)
ggplot(df, aes(x= df$Date)) +
+ geom_line(aes(y = df$SearchVolume, colour = "Search Volume")) +
+ geom_line(aes(y = df$People, colour = "People"))
The y axis needs to become log if that is possible