Displaying 1 result from an estimated 1 matches for "test_vari".
Did you mean:
test_vars
2012 Jan 22
1
How to construct a formula
...l
show what I am trying to do:
Current code:
data=read.csv("dataMini.csv", header=TRUE, sep=",", dec=".")
colnames(data)
library(nlme)
if(weight_significant) {
if(gender_significant) {
if(weight_gender_interaction_significant) {
model=lme(test_variable~Genotype + Weight + Gender +
Weight*Gender, random=~1|Assay.Date, data, na.action="na.exclude",
method="REML")
} else {
model=lme(test_variable~Genotype + Weight + Gender,
random=~1|Assay.Date, data, na.action="na.exclude", method="REM...