Displaying 5 results from an estimated 5 matches for "bodonia".
Did you mean:
bodhania
2010 Aug 24
2
chisq.test on samples of different lengths
Hello,
I am trying to see whether there has been a significant difference in whether people experienced damages from wildlife in two different years. I therefore have two columns:
year 1:
yes
no
no
no
yes
yes
no
year 2:
no
yes
no
yes
I wanted to do a chisq.test, but if I enter it this way:
chisq.test(year1, year2)
I get the error saying the columns are two different lengths. So then I tried
2010 Aug 25
0
package MuMIn
[cc'ing back to r-help: this is good etiquette so that the responses
will be seen by others/
archived for future reference.]
On 10-08-25 04:35 PM, Marino Taussig De Bodonia, Agnese wrote:
> Yes, I meant "MuMIn"
>
> the global formula I introduced was:
>
> rc4.mod<-lm(central$hunting~ central$year + central$gender +
central$hunter + central$k.score + central$seen.in.wild +
central$captivity + central$had.damage +
central$importance.of.being...
2010 Jul 06
1
PCA and Regression
Hello,
I am currently analyzing responses to questionnaires about general attitudes. I have performed a PCA on my data, and have retained two Principal Components. Now I would like to use the scores of both the principal comonents in a multiple regression. I would like to know if it makes sense to use the scores of one principal component to explain the variance in the scores of another principal
2010 Aug 03
0
"glmulti": excluding intractions between variables
Hello,
I'm using the "glmulti" package to run models of all the possible combinations of my variables. However, I am only interested in a few interactions between them.
I have tried the equivalent of:
1) mod1<-lm(y~a+b+c+a:b)
glmulti(mod1, level=1)
2) mod2<-lm(y~a+b+c+a:b)
glmulti(mod2, level=2)
3) glmulti("y", c("a",
2010 Aug 03
1
"glmulti": defining which intractions between variables are to be included
Hello,
I'm using the "glmulti" package to run models of all the possible combinations of my variables. However, I am only interested in a few interactions between my variables.
I have tried the equivalent of:
mod1<-lm(y~a+b+c+a:b)
glmulti(mod1, level=1)
mod2<-lm(y~a+b+c+a:b)
glmulti(mod2, level=2)
and
glmulti("y", c("a", "b", "c"),