How do I test for equality of two regression coefficients within the same model? I have the following code:
illegalscandal <- lm(PoliticalApproval ~ Ideology + Education + Age + Sex + FL_10_DO,
data = Qualtricsillegal)
FL_10_DO
is a variable for two different types of political communication (denial, confession). Id like to test if there is equality between T4
(confession) and T3
(denial). Thanks a lot.