View source: R/createTimePoints.R
| removeTimePoints | R Documentation | 
Function for removing selected time points from an object of class TP.
removeTimePoints(TP, timePoints)
TP | 
 An object of class TP.  | 
timePoints | 
 A character or numeric vector indicating the time points to be removed. When using a character string to reference a time point, the value has to be an exact match to one of the existing timePoints. When using a number it will be matched by its number ("timeNumber") in the timePoints attribute of the TP object.  | 
An object of class TP, the input with the selected time points removed.
Other functions for data preparation: 
as.data.frame.TP(),
createTimePoints(),
getTimePoints(),
plot.TP(),
summary.TP()
## Create a TP object containing the data from the Phenovator.
phenoTP <- createTimePoints(dat = PhenovatorDat1,
                            experimentName = "Phenovator",
                            genotype = "Genotype",
                            timePoint = "timepoints",
                            repId = "Replicate",
                            plotId = "pos",
                            rowNum = "y", colNum = "x",
                            addCheck = TRUE,
                            checkGenotypes = c("check1", "check2",
                                               "check3","check4"))
## Remove the first and last time point from the TP object.
phenoTPNew <- removeTimePoints(phenoTP,
                               timePoints = c(1, 73))
## Compare by looking at summaries.
summary(phenoTP)
summary(phenoTPNew)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.