Suppose we estimate
What is Stata's default behavior when we omit the i for the categorical variable? Does it simply interpret race, in this case, as an interval variable, where a 1 unit increase in race decreases the probability of being a smoker by 18 percentage points? I usually include the i when using categorical variables, but I've seen others not do this, and I was unsure how to interpret it.
Code:
clear * cls //import delimited "C:\The Shop\simulated_dataset.csv" webuse lbw, clear loc iv race loc dv sm reg smoke i.`iv' reg smoke `iv'
Comment