setFactorKinrespData {twKinresp}R Documentation

setFactorKinrespData

Description

Codes the columns replicate, experiment, and suite as a factor.

Usage

setFactorKinrespData(rd)

Arguments

rd

data.frame holding the experimental observations.

Details

Functions for getting the respiration data into correct format

Value

Modification of input rd.

Author(s)

Thomas Wutzler <thomas.wutzler@web.de>

See Also

twKinresp

Examples

if( FALSE){  # data file not available at R CHECK on R-forge
	(dataFilename <- file.path( system.file(package="twKinresp"), "data", "respWutzler10.csv" ))
	# may open the file with a text editor or a spreadsheet program to inspect the format
	rd0 <- read.csv(dataFilename)	# reading the data from file
	rd <- setFactorKinrespData(rd0) # Factor coding
	str(rd)
	rd[1:10,]
}

[Package twKinresp version 0.0.5 Index]