0

Here is my current code. Trying to figure out how to plot depth of the ocean so 0 needs to be at the top of the axis. Anyone have example code for how to do this?

ggplot(data = NH35_6768merge)+
  geom_point(mapping = aes(temperature....C., Depth..m., color = Date))

1 Answers1

1

You can just add:

+ scale_y_reverse()
Elle
  • 998
  • 7
  • 12