I'm trying to run a multivariate linear regression on a data set but the summary has one of my categorical variables appearing twice with different coefficient values.
Below is a snapshot of the dataset and the regression output.
''' data = read.csv("Data.csv") data1 = select(data, Generosity, MALE, ECON, FIRST, FIELD, EXP, ECON300, ECON400, EMPLOY, STUDLOAN, DEBT) head(data1)
reg1 = lm(Generosity~MALE + ECON + FIRST + FIELD + EXP + ECON300 + ECON400 + EMPLOY + STUDLOAN + DEBT, data = data1)
summary(reg1)'''
FIELDSOCSCI appears twice?