Horizontal scale bar in R plot
When I plot my fitted models in R, I get the output with a开发者_高级运维 vertical scale bar. Can some one kindly tell me how to place a horizontal scale bar in R plots instead of vertical? Thanks in advance.
Not sure what you want to do.
Here are some possible solutions:
1) If using `library(ggplot2)
add + coord_flip()
2) If using
plot
plot(x = value, y = 1:length(name),...)
精彩评论