为什么 floor return 在这个例子中少了一个元素
why does floor return in this example one element less
我是 运行 R version 3.1.1 (2014-07-10) -- "Sock it to Me"
,关于 floor
函数我应该缺少一些东西,因为我希望最新的整数是 25
在以下示例中:
a = 50.8
b = 25.9
floor(a:b)
但请注意,以下内容按预期工作:
c = 10.96
d = 9.3
floor(c:d)
c = 10.96
d = 9.9
floor(c:d)
你不懂:
。文档说
For other arguments from:to
is equivalent to seq(from, to)
, and
generates a sequence from from
to to
in steps of 1 or -1.
从 50.8 减去 1 的倍数而不超过 25.9 的最后一个值是 26.8。而 floor(26.8)
是 26.
我是 运行 R version 3.1.1 (2014-07-10) -- "Sock it to Me"
,关于 floor
函数我应该缺少一些东西,因为我希望最新的整数是 25
在以下示例中:
a = 50.8
b = 25.9
floor(a:b)
但请注意,以下内容按预期工作:
c = 10.96
d = 9.3
floor(c:d)
c = 10.96
d = 9.9
floor(c:d)
你不懂:
。文档说
For other arguments
from:to
is equivalent toseq(from, to)
, and generates a sequence fromfrom
toto
in steps of 1 or -1.
从 50.8 减去 1 的倍数而不超过 25.9 的最后一个值是 26.8。而 floor(26.8)
是 26.