- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi all, today, when I try to run a regression by using PROC GLM, I face this problem
ERROR: Number of levels for some effects > 32767.
My code is
libname input 'C:\Users\pnguyen\OneDrive - Massey University\PhD JOURNEY\leniency & operating\datasas' access=readonly;
proc copy inlib=input outlib=work mt=data;
run;
proc glm data=work.merge_treat_con;
class type yr;
model wtot_ass_tur = pt type yr/solution ss3;
run;
quit;
I am wondering what does this mean regarding the word "levels
" mean in this error? And how come we overcome this limitation or any alternative solution?
Warmest regards.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
When learning a procedure, first work through the examples in the documentation, then search on lexjansen.com for that procedure and the term workshop or tutorial to learn about it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Tags:
- fixed effects
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi @StatDave
Thank you for your reply. However,is there any accessible source online for this book (like SAS documents) or I need to buy this book, I try to search from my school's library but there is no book like this available.
I did search via your link previously from this discussion(https://communities.sas.com/t5/Statistical-Procedures/Fixed-effect-regressions/td-p/171442)
but it does not work now
Warm regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi @StatDave
I promise that I already searched for a while but there is no pdf version available.
Is there any help from the SAS community...I really want to learn and broaden my knowledge.
Warmest regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
https://www.amazon.com/Fixed-Effects-Regression-Methods-Longitudinal/dp/1590475682
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
When learning a procedure, first work through the examples in the documentation, then search on lexjansen.com for that procedure and the term workshop or tutorial to learn about it.