search for: coefficientss

Displaying 1 result from an estimated 1 matches for "coefficientss".

Did you mean: coefficients
2009 Jun 27
1
Regression; how to get t-values for all parameters estimates
...a solution for my problem. I'm trying to fit an additive linear regression model with 2 effects, both fixed, to some dataset. The function contrasts(effectA) <- contr.sum can gaurantee that the coefficients per parameter sum to one, and the function dummy.coef provices the estimates of all coefficientss. But I would also like to be able to obtain the corresponding t-values for ALL parameters (not just the number of effects minus 1, provided by summary()). Does anyone know how to get (all of) them? Here comes what I've already tried: ## Try data: > Data <- rbinom(1000,50,.9); > Date...