
Handbook of Advanced Multilevel Analysis
- 408 pages
- English
- ePUB (mobile friendly)
- Available on iOS & Android
Handbook of Advanced Multilevel Analysis
About this book
This new handbook is the definitive resource on advanced topics related to multilevel analysis. The editors assembled the top minds in the field to address the latest applications of multilevel modeling as well as the specific difficulties and methodological problems that are becoming more common as more complicated models are developed. Each chapter features examples that use actual datasets. These datasets, as well as the code to run the models, are available on the book's website http://www.hlm-online.com . Each chapter includes an introduction that sets the stage for the material to come and a conclusion.
Divided into five sections, the first provides a broad introduction to the field that serves as a framework for understanding the latter chapters. Part 2 focuses on multilevel latent variable modeling including item response theory and mixture modeling. Section 3 addresses models used for longitudinal data including growth curve and structural equation modeling. Special estimation problems are examined in section 4 including the difficulties involved in estimating survival analysis, Bayesian estimation, bootstrapping, multiple imputation, and complicated models, including generalized linear models, optimal design in multilevel models, and more. The book's concluding section focuses on statistical design issues encountered when doing multilevel modeling including nested designs, analyzing cross-classified models, and dyadic data analysis.
Intended for methodologists, statisticians, and researchers in a variety of fields including psychology, education, and the social and health sciences, this handbook also serves as an excellent text for graduate and PhD level courses in multilevel modeling. A basic knowledge of multilevel modeling is assumed.
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
Section IV
Special Estimation Problems
APPENDIX 1
PROC NLMIXED;
PARMS a1 = -1.9 a2 = -1.7 a3 = -1.4 a4 = -1.1 a5 = -.9 a6 = -.8 a7 = -.6
bSocIso = .1 sd = .2;
z = bSocIso*SocIso + sd*theta;
IF (Smk = 1) THEN
p = 1 - EXP( - EXP(a1 + z));
ELSE IF (Smk = 2) THEN
p =(1 - EXP( - EXP(a2 + z))) - (1 - EXP( - EXP(a1 + z)));
ELSE IF (Smk = 3) THEN
p =(1 - EXP( - EXP(a3 + z))) - (1 - EXP( - EXP(a2 + z)));
ELSE IF (Smk = 4) THEN
p =(1 - EXP( - EXP(a4 + z))) - (1 - EXP( - EXP(a3 + z)));
ELSE IF (Smk = 5) THEN
p =(1 - EXP( - EXP(a5 + z))) - (1 - EXP( - EXP(a4 + z)));
ELSE IF (Smk = 6) THEN
p =(1 - EXP( - EXP(a6 + z))) - (1 - EXP( - EXP(a5 + z)));
ELSE IF (Smk = 7) THEN
p =(1 - EXP( - EXP(a7 + z))) - (1 - EXP( - EXP(a6 + z)));
ELSE IF (Smk = 8) THEN
p = EXP( - EXP(a7+z));
logl = LOG(p);
MODEL Smk ~ GENERAL(logl);
RANDOM theta ~ NORMAL(0,1) SUBJECT = Schoolid;
PROC NLMIXED;
PARMS a1 = -1.9 a2 = -1.7 a3 = -1.4 a4 = -1.1 a5 = -.9 a6 = -.8 a7 = -.6 sd = .2
bSocIso1 = .1 bSocIso2 = .1 bSocIso3 = .1 bSocIso4 = .1 bSocIso5 = .1
bSocIso6 = .1 bSocIso7 = .1;
z1 = bSocIso1*SocIso + sd*theta;
z2 = bSocIso2*SocIso + sd*theta;
z3 = bSocIso3*SocIso + sd*theta;
z4 = bSocIso4*SocIso + sd*theta;
z5 = bSocIso5*SocIso + sd*theta;
z6 = bSocIso6*SocIso + sd*theta;
z7 = bSocIso7*SocIso + sd*theta;
IF (Smk = 1) THEN
p = 1 - EXP( - EXP(a1 + z1));
ELSE IF (Smk = 2) THEN
p =(1 - EXP( - EXP(a2 + z2))) - (1 - EXP( - EXP(a1 + z1)));
ELSE IF (Smk = 3) THEN
p =(1 - EXP( - EXP(a3 + z3))) - (1 - EXP( - EXP(a2 + z2)));
ELSE IF (Smk = 4) THEN
p =(1 - EXP( - EXP(a4 + z4))) - (1 - EXP( - EXP(a3 + z3)));
ELSE IF (Smk = 5) THEN
p =(1 - EXP( - EXP(a5 + z5))) - (1 - EXP( - EXP(a4 + z4)));
ELSE IF (Smk = 6) THEN
p =(1 - EXP( - EXP(a6 + z6))) - (1 - EXP( - EXP(a5 + z5)));
ELSE IF (Smk = 7) THEN
p =(1 - EXP( - EXP(a7 + z7))) - (1 - EXP( - EXP(a6 + z6)));
ELSE IF (Smk = 8) THEN
p = EXP( - EXP(a7 + z7));
logl = LOG(p);
MODEL Smk ~ GENERAL(logl);
RANDOM theta ~ NORMAL(0,1) SUBJECT = Schoolid;APPENDIX 2
Table of contents
- Contents
- Preface
- Section I Introduction
- Section II Multilevel Latent Variable Modeling (LVM)
- Section III Multilevel Models for Longitudinal Data
- Section IV Special Estimation Problems
- Section V Specific Statistical Issues
- Author Index
- Subject Index