作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如,我有数字:43.2, 45.3, 48.1, 54.2
.当我使用 stem() 函数绘制绘图时,我得到了:stem() 函数显示如下
x <- c(43.2, 45.3, 48.1, 54.2)
stem(x)
#
# The decimal point is 1 digit(s) to the right of the |
#
# 4 | 3
# 4 | 58
# 5 | 4
43,45,48,54
.所以我想要一个函数来绘制一个茎叶图,我仍然可以知道确切的数字而不需要四舍五入。
43.2
应该是茎
4
和一片叶子
3.2
,
43.22
应该是茎
4
和一片叶子
3.22
.
43.2, 45.3, 48.1, 54.2
.我想要这样的情节:
最佳答案
x <- c(43.2, 45.3, 48.1, 54.2)
stem(x)
#
# The decimal point is 1 digit(s) to the right of the |
#
# 4 | 3
# 4 | 58
# 5 | 4
stem2(x)
#
# The decimal point is 1 digit(s) to the right of the |
#
# 4 | 3.2
# 4 | 5.3, 8.1
# 5 | 4.2
stem2 <- function(x) {
cx <- gsub('^.', ', ', as.character(sort(x)))
co <- capture.output(stem(x))
m <- gregexpr('\\d(?!.*\\|)', co, perl = TRUE)
l <- regmatches(co, m)
l <- t(do.call('rbind', lapply(l, `length<-`, max(lengths(l)))))
l[!is.na(l)] <- cx
regmatches(co, m) <- data.frame(l)
cat(gsub(' , ', ' ', co), sep = '\n')
}
关于r - 如何绘制显示真实叶子的茎叶图而不进行四舍五入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39309193/
Infix[]仅适用于第一级: Infix[(c a^b)^d] (* -> (a^b c) ~Power~ d *) 由于我想(不要问为什么)将完整表达式切换为中缀表示法,因此我尝试了以下操作: S
我正在寻找遍历特定元素的叶子的最有效方法。例如: One Two Paragraph Text
我想评估 bool 表达式,例如 a=b & s、>=、{ eval() {} // bool operator()(const var& v) const {
我正在尝试将物联网边缘设备设置为边缘网关。我们不希望我们的叶子/传感器/下游设备直接连接到互联网/云,因此我希望物联网边缘网关(顾名思义)能够桥接下游设备和云/物联网之间的连接中心。但是,我意识到任何
我是一名优秀的程序员,十分优秀!