Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
点,我的意思是密度图底部的点。此外,我想设置一些“抖动”的值,这样所有的点就不仅仅是在一条直线上,而是更“分散”在周围。
对于 lattice,查看帮助功能的面板版本通常会有所帮助?panel.densityplot,其中提到jitter.amount; 我承认偷看 panel.density 的来源,看到点是使用 panel.xyplot 绘制的,它有 argument col.symbol。所以
?panel.densityplot
jitter.amount
col.symbol
library(lattice) x = rnorm(1000) densityplot(x, jitter.amount=.02, col.symbol="red")