Learn R Programming

tofsims (version 1.0.2)

calibration: calibration, slot of MassSpectra class objects

Description

Generic setter for slot calibration<-

Usage

calibration(object)

calibration(object) <- value

## S3 method for class 'MassSpectra': calibration(object)

## S3 method for class 'MassSpectra': calibration(object) <- value

Arguments

object
object of class MassSpectra
value
data.frame with replacement values for calibration slot

Value

  • content of calibration slot

See Also

object MassSpectra other slots mz analysis analysisName instrument calibPoints nz

Examples

Run this code
library(tofsimsData)
data(tofsimsData)
## access calibration slot
calibration(testSpectra)
## replacing the values of the 'calibration' slot is
## possible but it makes at the moment no sense as it
## doesn't change the actual mass calibration. The 
## 'calibration' slot is just used to store the values
## while 'recalibration' uses the values from 
## 'calibPoints' slot.
calibration(testSpectra) <- data.frame(intercept = 21420, slope = 20480)
calibration(testSpectra)

Run the code above in your browser using DataLab