I am trying to include year and industry fixed effects in my logistic model. Is this the correct way! PROC logistic DATA= mydata desc; CLASS sic /PARAM=REF; MODEL dependent = independent / rsq; STRATA fyear; run; quit; Thank you!
... View more
Please help. I'm trying to calculate the std deviation of a variable and output as a new variable. used: sales_dev = std(sales); got this error message; ERROR 71-185: The STD function call does not have enough arguments. Thanks
... View more