NMdataOperations {NMdata} | R Documentation |
Basic arithmetic on NMdata objects
Description
Basic arithmetic on NMdata objects
Usage
## S3 method for class 'NMdata'
merge(x, ...)
## S3 method for class 'NMdata'
t(x, ...)
## S3 method for class 'NMdata'
dimnames(x, ...)
## S3 method for class 'NMdata'
rbind(x, ...)
## S3 method for class 'NMdata'
cbind(x, ...)
Arguments
x |
an NMdata object |
... |
arguments passed to other methods. |
Details
When 'dimnames', 'merge', 'cbind', 'rbind', or 't' is called on an 'NMdata' object, the 'NMdata' class is dropped, and then the operation is performed. So if and 'NMdata' object inherits from 'data.frame' and no other classes (which is default), these operations will be performed using the 'data.frame' methods. But for example, if you use 'as.fun' to get a 'data.table' or 'tbl', their respective methods are used instead.
Value
An object that is not of class 'NMdata'.
[Package NMdata version 0.1.6 Index]