nrow: Retrieve dimensions of Spectra* objects

Description Usage Arguments Details Value Author(s) Examples

Description

Retrieves the wavelengths units and the spectral resolution from Spectra* objects.

Usage

1
2
3
4
5
6
dim(x)
length(x)
## S4 method for signature 'Spectra'
ncol(x)
## S4 method for signature 'Spectra'
nrow(x)

Arguments

x

For nrow, length, dim, a Spectra object. For ncol, a SpectraDataFrame object.

Details

* Methods for Spectra objects

nrow returns the number of individuals in the collection length returns the number of wavelengths in the collection ncol returns NULL dim returns a vector containing (1) the number of individuals and (2) in the number of wavelengths in the collection

* Methods for Spectra objects

nrow returns the number of individuals in the collection length returns the number of wavelengths in the collection ncol returns the number of attributes in the collection dim returns a vector containing (1) the number of individuals, (2) in the number of wavelengths, and (3) the number of attributes in the collection

Value

nrow, ncol, nwl, and length, return an integer.

dim returns a vector of length 2 or 3 (see Details section).

Author(s)

Pierre Roudier pierre.roudier@gmail.com

Examples

1
2
3
4
5
6
7
8
# Loading example data
data(australia)
spectra(australia) <- sr_no ~ ... ~ 350:2500

nrow(australia)
ncol(australia)
length(australia)
dim(australia)

inspectr documentation built on May 2, 2019, 5:45 p.m.