Displaying 3 results from an estimated 3 matches for "respvar".
Did you mean:
respval
2012 Aug 10
2
Function definition: where is the error in the "for" loop?
Dear all,
The following function code fails with errors (see below):
RegPlots <- function (data, ContrVar, RespVar){
intNmbrRows<-length(RespVar);intNmbrCols<-lenght(ContrVar)
par(mfrow=c(intNmbrRows,intNmbrCols))
For(i in 1:intNmbrRows){
For (j in 1:intNmbrCols){
RegGraf(data,ContrVar[i],RespVar[j])
}
}
par(mfrow=c(1,1))
#(RegGraf i...
2004 Mar 21
1
Multilevel analysis with package lme
...i do about that ?
Then i have another question about my data.
I have one response variable and about 20 explanatory variables. These
variables are nested in a grouping variable of about 100 groups, which is
nested in another grouping variable of 2 groups .
I have tried this
lme.model <- lme(respVar~expVar1, data=myData, random = respVar1+...
+respVar20| groupingVariable_level2,na.action=na.omit)
As i understood Snijders and Bosker, with that i have a fixed effect of
expVar1 on respVar and a random effect of all the others explanatory
variables. They are also nested in grouping Variable lev...
2004 May 28
1
dotchart questions
I am trying to put 3 dotcharts side-by-side with minimal space between
each. Each chart is for a different variable, but the vertical axes are
the same.
I want to have vertical axis labels on the lefthand chart but no
vertical axis labels on the other two. Plus, I would like very little
space between charts 1 & 2 and between charts 2 & 3.
I have one approach but am not too happy with