Hi folks! I am working on my mixed model (random coefficients model). The response variable is Views. I have a few factors that I consider to be both fixed effects and random effects for my model. They are Home_Based, Twitter, OLA, Hulu, Car, Central. My class/subject variable is top_ind, which has two levels, 1 and 2. I've written my code as below to start with only 1 factor, and it does not converge. I'm wondering if anyone can offer insights into why my model is not converging. I've attached the data as well. Thanks! proc mixed data=MIXED_DATA ITDETAILS LOGNOTE; class Top_IND; model Views= ola / ddfm=kr2 solution; random int ola / subject=Top_IND type=un g solution; run;
... View more