Learn R Programming

PhenStat (version 2.6.0)

startModel: Method "startModel"

Description

This is an internal function run within MM framework. It completes the testing stage of which effects are significant. As an internal function, it doesn't include extensive error testing of inputs. Please use cautiously if calling directly. It creates start model and modify it after testing of different hypothesis (the model fixed effects). The model random effects are: -batch effect (TRUE if batch variation is significant, FALSE if not) The model fixed effects are: -variance effect (TRUE if residual variances for genotype groups are homogeneous and FALSE if they are heterogeneous), -interaction effect (TRUE if genotype by sex interaction is significant), -sex effect (TRUE if sex is significant), -weight effect (TRUE if weight is significant). If user would like to assign other TRUE/FALSE values to the fixed effects of the model then he or she has to define keepList argument which is vector of TRUE/FALSE values. If user has defined model fixed effects (keepList argument) then function prints out calculated and user defined effects (only when outputMessages argument is set to TRUE), checks user defined effects for consistency (for instance, if there are no "Weight" column in the dataset then weight effect can't be assigned to TRUE, etc.) and modifies start model according to user defined effects. As the result PhenTestResult object that contains calculated or user defined model fixed effects and MM start model is created.

Usage

startModel(phenList, depVariable, equation="withWeight", outputMessages=TRUE, pThreshold=0.05, keepList=NULL)

Arguments

phenList
instance of the PhenList class; mandatory argument
depVariable
a character string defining the dependent variable of interest; mandatory argument
equation
a character string defining the equation to use. Possible values "withWeight" (default),"withoutWeight"
outputMessages
flag: "FALSE" value to suppress output messages; "TRUE" value to show output messages ; default value TRUE
pThreshold
a numerical value for the p-value threshold used to determine which fixed effects to keep in the model, default value 0.05
keepList
a logical vector defining the significance of different model effects: keep_batch, keep_equalvar, keep_weight, keep_sex, keep_interaction; default value NULL

Value

Returns results stored in instance of the PhenTestResult class

References

Karp N, Melvin D, Sanger Mouse Genetics Project, Mott R (2012): Robust and Sensitive Analysis of Mouse Knockout Phenotypes. PLoS ONE 7(12): e52410. doi:10.1371/journal.pone.0052410 West B, Welch K, Galecki A (2007): Linear Mixed Models: A practical guide using statistical software New York: Chapman & Hall/CRC 353 p.

See Also

PhenList

Examples

Run this code
    file <- system.file("extdata", "test1.csv", package="PhenStat")
    test <- PhenList(dataset=read.csv(file),
            testGenotype="Sparc/Sparc")
    # when "testDataset" function's argument "callAll" is set to FALSE 
    # only "startModel" function is called - the first step of MM framework
    result <- testDataset(test,
            depVariable="Lean.Mass",
            callAll=FALSE)
    # print out formula that has been created
    analysisResults(result)$model.formula.genotype
    # print out batch effect's significance 
    analysisResults(result)$model.effect.batch
    # change the model
    result <- testDataset(test,
            depVariable="Lean.Mass",
            equation="withWeight",
            callAll=FALSE) 
    # print out new formula
    analysisResults(result)$model.formula.genotype

Run the code above in your browser using DataLab