Description Usage Arguments Details See Also
A very basic 64-bit integer class.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | int64(length = 0)
is.int64(x)
## Default S3 method:
as.int64(x, ...)
## S3 method for class 'factor'
as.int64(x, ...)
## S3 method for class 'character'
as.int64(x, base = 10L, ...)
## S3 method for class 'numeric'
as.int64(x, ...)
## S3 method for class 'NULL'
as.int64(x, ...)
## S3 method for class 'int64'
format(x, ...)
## S3 method for class 'int64'
print(x, ...)
## S3 method for class 'int64'
as.character(x, base = NULL, ...)
## S3 method for class 'int64'
as.double(x, ...)
## S3 method for class 'int64'
as.integer(x, ...)
## S3 method for class 'int64'
is.na(x, ...)
## S3 method for class 'int64'
as.data.frame(x, ...)
## S3 method for class 'int64'
as.list(x, ...)
## S3 method for class 'int64'
c(...)
## S3 method for class 'int64'
is.numeric(x)
## S3 method for class 'int64'
rep(x, ...)
|
x |
Object to be coerced or tested |
length |
A non-negative integer specifying the desired length. Double values will be coerced to integer: supplying an argument of length other than one is an error. |
... |
Further arguments passed to or from other methods. |
base |
Specifies the base of the number (default is the base attribute of the object). |
The int64
class stores 64-bit integers in vectors of doubles and the
base as an attribute base
of the vector for printing and conversion to
character. The motivation behind this class is to give R the ability to load
64-bit integers directly, for example, to represent the commonly used 64-bit
identifiers in relational and other databases.
Ops.int64 csvread
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.