Does anyone have any idea why my knitr output into html or pdf is so drastically different than what is displayed in the console?
Console:
Knitr:
ggplot(walk.com, aes(x=Time, y=pos.VERT)) + geom_point() + geom_line() + labs(x="Time (s)",y="Vertical Position (m)") + ggtitle("Walking Vertical Position vs Time")
It is almost like the y axis is being rounded with the output causing discrete variables... I can't seem to figure out what is causing this. Any input would be greatly appreciated. Thanks!