I have created a linear model based on 2 (interacting) independent nominal variables and 1 dependent interval variable.
Most parameters I've found were statistically significant, but the parameters related to 1 value of an independent variable came back as insignificant. The F-statistic for the entire model also was significant.
How should I interpret this? Does this mean my fitted model is wrong? Can I still use these coefficients to create a reliable model and make conclusions? What steps can I take to create a better model?
Don't know if it's useful, but I will also describe my data and approach in R. The dependent variable contains measurements of protein counts in the blood. The independent variables are nominal with respectively 2 possible values (i.e. gender) and 3 values (i.e. custom group indicating the severity of a specific disease). These 2 independent variables are expected to interact.
In R, the following linear model was used:
lm(formula = proteinCount ~ gender + severity + gender:severity )
The coefficients found for parameters genderMale:severityGroup3 and severityGroup3 both came back as insignificant while the coefficients for other parameters all had p-values below 0.001.