Displaying 1 result from an estimated 1 matches for "b1xb2".
Did you mean:
b1b2
2012 Jan 23
1
R not giving significance tests for coefficients/estimates?
> 3x4
Error: unexpected symbol in "3x4"
R has no idea that you equate "x" as multiplication.. use an astrix
> 3*4
[1] 12
dominic wrote
>
> This is basically my code:
>
> library(MASS)
> lmsreg(formula = b0 ~ b1 + b3 + b1xb2, data=mydata)
>
> b1xb2 is an interaction but it was the centered value for a continuous
> variable times a categorical variable.
>
> I am used to using Mplus statistical software and SAS for robust
> regression, and they'll usually give you a t-test, p-value as well as th...