The following code runs in R studio and makes a nice graph. When I compile the report though, it does not show in the report. What do I need to change to get it to do so?

ggplot(modelFrame,aes(x=Month.order,y=mean,color=Month.order)) +
geom_point()+
geom_linerange(data=modelFrame,aes(x=Month.order,ymin=min,ymax=(max)), lwd=1,position=position_dodge(width=1/2))+labs(y="Number of Ova/Fish on the log 10 Scale", x="Month") +theme_bw()+ ggtitle("Effect of Month on Number of Ova Produced per Fish")

Hi, welcome!

We don't really have enough info to help you out. Could you ask this with a minimal REPRoducible EXample (reprex)? A reprex makes it much easier for others to understand your issue and figure out how to help.

If you've never heard of a reprex before, you might want to start by reading this FAQ:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.