作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法将茎叶图输出到图形设备,例如window()
/quartz()
?至少有两种方法可以在 R 中获取茎叶图:?stem ,在图形包中,以及 ?stem.leaf , 在 aplpack 包中。两者都将文本输出到控制台。例如:
> set.seed(1)
> stem(rbinom(10, size=10, prob=.5))
The decimal point is at the |
3 | 0
4 | 000
5 | 0
6 | 00
7 | 000
最佳答案
这是一个简单的例子:
plot.new()
tmp <- capture.output(stem(iris$Petal.Length))
text( 0,1, paste(tmp, collapse='\n'), adj=c(0,1), family='mono' )
text
作用于
tmp
的每个元素而不是
paste
ing。类似
strheight
的函数和
strwidth
将有助于找到坐标。
关于r - 如何将茎叶图输出为图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26532564/
我是一名优秀的程序员,十分优秀!