Tagged Questions

3
votes
1answer
223 views

Formula for all first and second order predictors including interactions in R

In the statistics programming language R, the following formula (as used in lm() or glm()) z ~ (x+y)^2 is equivalent to z ~ x + y + x:y Assuming, I only have continuous predictors, is there a ...
2
votes
2answers
188 views

chisq.test in R

Hi I am running chisq.test method and it gives me back the x-squared and the p-value, Now I want to take the p-value and according to the reading proceed with my program. How can i just get out the ...
2
votes
2answers
559 views

Creating a loop in R to apply the same functions to many similarly named variables

I am using a dataset w/variables that have very similar names. I have to apply the same functions to 13 variables at a time and I'm trying to shorten the code, instead of doing each variable ...
1
vote
1answer
735 views

LanguageR/ lme4: any help on p-values for models with random correlation parameters?

I used the package languageR for mixed effect models with the syntax at the end of this posting. I can use pvals.fnc to get p-values for model 1 and 3 (hd_lmer1 and hd_lmer2). Using this with model ...
0
votes
1answer
355 views

using chisq.test in R (chi-squared tests)

I am trying to read a csv file and then creating 3 matrices out of each row from the csv file and then apply chi-squared test using the method chisq.test(matrix), but somehow this methods seems to ...