来自gslider()的gWidgets2中的length.out
和along.with
参数有什么用?在?gslider
我只能看到(相当反直觉):
by step size if not specified by from
length.out in place of by
along.with in place of length.out
这是否意味着这三个论点是同义词?
答案 0 :(得分:1)
查看源代码。
if (!is.null(length.out)) {
by <- (to - from)/(length.out[1] - 1)
}
如果存在,请说length.out = 5
,将by
设置为(to - from) / 4
。至于后者,
if (!missing(along.with)) {
length.out <- length(along.with)
}
它允许您传递长度为n
的列表,然后length.out
将为n
。我不会谈论这些论点的用处,但我想作者一定认为它们会派上用场。