作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个简单的 Dotplot()
使用这些数据:
d <- data.frame(emot=rep(c("happy","angry"),each=2),
exp=rep(c("exp","non-exp"),2), accuracy=c(0.477,0.587,0.659,0.736),
Lo=c(0.4508,0.564,0.641,0.719), Hi=c(0.504,0.611,0.677,0.753))
library(Hmisc)
Dotplot(emot ~ Cbind(accuracy, Lo, Hi), groups=exp, data=d,
pch=c(1,16), aspect = "xy", par.settings = list(dot.line=list(col=0)))
scales=list(...)
来实现这一目标。参数(不确定如何),但我必须再次定义标签等。有没有更快的方法来做到这一点?解决这个问题似乎很简单,但我被卡住了。
最佳答案
尽管 Hmisc::Dotplot 正在使用格子,但仅添加 ylim 参数似乎就可以解决问题。您可以计算出默认比例,因为这两个值是具有潜在 1/2 值的因子:
Dotplot(emot ~ Cbind(accuracy, Lo, Hi), groups=exp, data=d, ylim=c(0,3),
pch=c(1,16), aspect = "xy", par.settings = list(dot.line=list(col=0)))
关于r - 调整晶格中轴刻度之间的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12059889/
在引用文献中,它们被描述为: axis('equal') changes limits of x or y axis so that equal increments of x and y have
我是一名优秀的程序员,十分优秀!