sum.integer64 | R Documentation |
Summary functions for integer64 vectors. Function 'range' without arguments returns the smallest and largest value of the 'integer64' class.
## S3 method for class 'integer64'
any(..., na.rm = FALSE)
## S3 method for class 'integer64'
all(..., na.rm = FALSE)
## S3 method for class 'integer64'
sum(..., na.rm = FALSE)
## S3 method for class 'integer64'
prod(..., na.rm = FALSE)
## S3 method for class 'integer64'
min(..., na.rm = FALSE)
## S3 method for class 'integer64'
max(..., na.rm = FALSE)
## S3 method for class 'integer64'
range(..., na.rm = FALSE, finite = FALSE)
lim.integer64()
... |
atomic vectors of class 'integer64' |
na.rm |
logical scalar indicating whether to ignore NAs |
finite |
logical scalar indicating whether to ignore NAs (just for
compatibility with |
The numerical summary methods always return integer64
. Wherever integer methods would
return Inf
(or its negation), here the extreme 64-bit integer 9223372036854775807
is
returned. See min()
for more details about the behavior.
lim.integer64
returns these limits in proper order
-9223372036854775807, +9223372036854775807
and without a warning()
.
all()
and any()
return a logical scalar
range()
returns a integer64 vector with two elements
min()
, max()
, sum()
and prod()
return a integer64 scalar
mean.integer64()
cumsum.integer64()
integer64()
lim.integer64()
range(as.integer64(1:12))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.