Learn R Programming

NMdata (version 0.2.3)

NMdataOperations: Basic arithmetic on NMdata objects

Description

Basic arithmetic on NMdata objects

Usage

# S3 method for NMdata
merge(x, ...)

# S3 method for NMdata t(x, ...)

# S3 method for NMdata dimnames(x, ...)

# S3 method for NMdata rbind(x, ...)

# S3 method for NMdata cbind(x, ...)

Value

An object that is not of class 'NMdata'.

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.