Below I am trying to plot latitude on the x axis and then growth data of specimen on the Y axis. The result of the code below orders the Y axis numerically, whereas I would prefer the x axis (latitude) is in numerical order.
Any thoughts on the best way to reorder the x axis?
viz_moss_data <- ggplot(data = merged_subsets_2, aes(x=Latitude,y=k))+
geom_point(color= "darkblue")+
labs(title = "'K' von Bertalanffy growth coefficient vs Mollusk Species",subtitle = "Mollusk Specimen sourced from Moss et al. 2016",y= "k growth coefficient",x="Latitude", color="New legend label")
viz_moss_data