ggplot2 - R knitr ggplot knitr output different than console -
does have idea why knitr output html or pdf drastically different displayed in 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 y axis being rounded output causing discrete variables... can't seem figure out causing this. input appreciated. thanks!
Comments
Post a Comment