deanna schreiber-gregory henry m jackson foundation for ...allison, paul d. 2012. logistic...

45
Deanna Schreiber-Gregory Henry M Jackson Foundation for the Advancement of Military Medicine PharmaSUG 2016 Paper #SP07

Upload: others

Post on 25-Jun-2020

2 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Deanna Schreiber-GregoryHenry M Jackson Foundation for the Advancement of Military

Medicine

PharmaSUG 2016Paper #SP07

Page 2: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Introduction to Latent Analyses Review of 4 Latent Analysis Procedures ADD Health Dataset Methods◦ Data Cleaning◦ Choosing a Regression Model

Analysis Summary

2

Page 3: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

3

Page 4: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Definition of Latent Analysis◦ Finite mixture model◦ Similar to clustering techniques

Latent Variables◦ Variables not directly observed “Hidden” or unobserved variables Inferred through mathematical models observed variables◦ Systematic unmeasured variable Often referred to as factors◦ Consider Intelligence, BMI, Achievement

4

Page 5: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Enables researchers to study the impact of exposure to patterns of multiple risks

Enables researchers to study antecedents and consequences of behaviors

Results can assist in the creation of more robust prevention programs

Can be used to reduce the number of variables Help researchers in situations in which treatment effects are

different for different people

5

Page 6: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Linear regression model without inclusion

Model of a “purified” x variable

Linear regression model with “purified” x

6

Page 7: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Sample may be composed of homogenous subgroups Classes◦ Not able to be directly measured (ie. latent)◦ Able to be inferred from measured “indicator” variables◦ Created such that indicators are not correlated within classes, instead

they are correlated across classes LSA provides objective criteria for determining the existence,

number, and makeup of these classes

7

Page 8: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

8

Analysis Design Approach Indicators ResultFactor Analysis Cross-sectional Dimensional Continuous Dimensions

Latent Class Analysis Cross-Sectional Categorical Dichotomous Classes

Latent Profile Analysis Cross-Sectional Categorical All Classes

Factor Mixture Modeling Cross-Sectional Both All Dimensions &Classes

Latent Transition Analysis Longitudinal Categorical All Transition Patterns

Latent Growth Mixture Models

Longitudinal Categorical Continuous Trajectories

Latent Change Score Analysis

Longitudinal Dimensional Continuous Latent Change

Page 9: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

9

Page 10: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

How can an LPA be beneficial?◦ Identifies unobserved (latent) categorical variable subgroups within a

population of continuous variable manifestations

10

Page 11: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

PROC FACTOR DATA=work.addhealthMETHOD=PRINVARDEF=DFSINGULAR=1E-08PRIORS=ONEROTATE=NONE;VAR H2TO46 H2TO52 H2TO56 H2TO60 H2TO64 H2FV12 H2TO5 H2TO37;BY H2FS16;

RUN;

11

Page 12: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

How can an LCA be beneficial?◦ Identifies unobserved (latent) categorical subgroups within a

population of categorical variable manifestations

12

Page 13: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

How can we conduct such an analysis?◦ PROC CATMOD Already available within Base SAS Multivariate loglinear modeling capabilities Completed in two steps Maximization step and Expectation step

◦ PROC LCA Designed by PennState University Created specifically for carrying out Latent Class Analysis Available via download from website: http://methodology.psu.edu

13

Page 14: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

This procedure is easily manipulated and executed◦ Able to easily add other features Can choose whether or not to run with covariates◦ Can easily specify: Grouping variables Measurement invariance

proc lca data=ADD_Total_LCA;nclass 2;items MoodDep1 MoodConsiderS2 MoodPlanS3;categories 2 2 2;seed 861551; run;

14

Page 15: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

How can an LTA be beneficial?◦ Identifies unobservable (latent) longitudinal variable subgroups within

a population

15

Page 16: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Latent transition analysis◦ Special class of LCA where latent variables change over time

This procedure is easily manipulated and executed◦ Able to easily add other features Can choose whether or not to run with covariates◦ Can easily specify: Grouping variables Measurement invariance

16

Page 17: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

PROC LTA DATA=Add_Health OUTPOST=Add_Health_Result;

NSTATUS 5;

NTIMES 3;

ITEMS AlcoholLife1 AlcoholDay2 AlcoholDaySP3 AlcoholBinge4 AlcoholGet5;

CATEGORIES 3 2 3 2;

GROUPS gender;

GROUPNAMES male female;

MEASUREMENT TIMES GROUPS;

COVARIATES1 AlcoholLife1 AlcoholDay2 AlcoholDaySP3 AlcoholBinge4 AlcoholGet5;

REFERENCE1 1;

SEED 409621; RUN;

17

Page 18: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Latent trajectory definition◦ Hidden processes of how data is changing over time

Another way to explore the effect of unobserved variables over time◦ Latent trajectories can not be measured with PROC LTA◦ Proc Traj is a procedure developed by Bobby L Jones

Theory:◦ Estimates a discrete mixture model for longitudinal data grouping◦ Groupings represent: Distinct subpopulations Components of discrete approx of complex data distributions

18

Page 19: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

proc traj data=Add_Health out=Add_Health_Result outstat=healthstatoutplot=healthplot ci95m;var AlcoholDay1 AlcoholBinge4;indep d1-d14;model zip;ngroups 4;start -5 -.5 0 0 0 0 0 .5 0 0 70 10 10 10;order 0 2 2 2;

%trajplotnew (healthplot,healthstat, ‘Daily Alcohol Use’,‘Alcohol Binge’)run;

19

Page 20: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Structural Equation Modeling includes:◦ Analysis of covariance structures and mean structures◦ Fitting systems of: Linear structural equations Factor analysis Path analysis

Furthermore:◦ Analysis of covariance models – model for observed variances and covariances◦ Analysis of mean structure models – model for observed means◦ Covariance structures (1) and mean (2) but sometimes both!

20

Presenter
Presentation Notes
In terms of mathematical techniques, these processes are more or less interchangeable, based on analyzing the mean and covariance structures. The only catch being that the different analysis types emphasize different aspects of the analysis. making it plausible for SAS To have a dedicated procedure Structural equation modeling. Furthermore…. The analysis of covariance structures refers to the formulation of a model for the observed variances and covariances among a set of variables. The model expresses the variances and covariances as functions of some basic parameters. Similarly, the analysis of mean structures refers to the formulation of a model for the observed means. The model expresses the means as functions of some basic parameters. Usually, the covariance structures are of primary interest. However, sometimes the mean structures are analyzed simultaneously with the covariance structures in a model.
Page 21: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Consider the assumption of latent factors◦ Want to explore the structural relationship between factors◦ We get a modeling scenario for factor-analysis

PROC CALIS provides two modeling languages for factor-analysis◦ FACTOR: a non-matrix based model specification language Supports exploratory and confirmatory factor analysis◦ LISMOD: matrix based model specification language Specify parameters in LISREL model matrices

21

Page 22: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Consider the relationship between observed and latent◦ Observed variables are not limited to measured indicators of latent factors◦ We get a modeling scenario for path modeling

PROC CALIS provides three modeling languages for path analysis◦ PATH: a non-matrix based model specification language Specify path-like relationships among variables

◦ RAM: matrix based model specification language Specify paths, variances, & covariance parameters

◦ LINEQS: equation based language uses linear equations to specify functional or path relationships

22

Page 23: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

23

Page 24: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

National Longitudinal Study of Adolescent Health (ADD Health)◦ Adolescents in grades 7-12◦ Followed through adulthood◦ Wave IV participants aged 24-32

Goal◦ Adolescent Social environments and behaviors◦ Adulthood Health and achievement outcomes

24

Page 25: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Context Survey Targets

Family Neighborhood Community School Friendships Peer Groups Romantic Relationships

Social Economic Psychological Physical

25

Page 26: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Wave I (1994-1995)◦ In-school samples and

questionnaires◦ In-home samples and interviews◦ School Administrator Questionnaires◦ Parent Questionnaires

Wave II (1996)◦ In-home samples and interviews◦ School Administrator Interview

Wave III (2001-2002)◦ In-home samples and interviews◦ Partner In-home Interview◦ Biological Specimen Collection

Wave IV (2008-2009)◦ In-home samples and interviews◦ Biological Specimen Collection

26

Page 27: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

27

Page 28: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Missing Variables◦ Check, identify, and control

Drop-out Rate◦ 4834/6504 participants (74%) remained in the study◦ Identify dropped participants, adjust data used

Review Data◦ Check for inconsistencies between the years in questionnaire

structure, restructure questions accordingly Weights◦ Nationally representative sample◦ Use weights calculated from principle investigators

28

Page 29: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Use of both binary and Likert scale items Magnitude of correlations shrink due to range restrictions%polychor(data=ADD_Health_FA, var=AlcoholLife1 AlcoholDay2 AlcoholDaySP3 AlcoholBinge4 AlcoholGet5 type=corr);

29

Page 30: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Linear Regression Response Surface Regression Partial Least Squares Regression Generalized Linear Regression◦ Logistic Regression◦ Other Generalized Linear

Models Regression for Ill-Conditioned

Data

Quantile Regression Nonlinear Regression Nonparametric Regression◦ Local Regression◦ Smooth Function

approximation◦ Generalized Additive Models

Robust Regression Regression with

Transformations

30

Page 31: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Consider the Question and Measures◦ What are the assumptions of the question Null/alternative hypotheses, etc.◦ How well do the observed metrics represent the idea

Consider nature of the variables◦ Binary, Ordinal, Continuous, Discrete

Consider assumptions of the model◦ Normality, linearity, homoscedasticity, independence, sample size, etc

31

Page 32: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Using the Appropriate 𝑹𝑹^𝟐𝟐◦ PROC SURVEYLOGISTIC / LOGISTIC option is available for Cox-Snell 𝑅𝑅

^2 Problem with upper-bound Max re-scaled 𝑅𝑅^2 is SAS® solution

Other options (Allison, 2014)◦ McFadden 𝑅𝑅^2◦ Tjur 𝑅𝑅^2

32

Page 33: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Goodness of Fit◦ In PROC SURVEYLOGISTIC / LOGISTIC, goodness-of-fit is measured in

three ways Akaike’s Information Criterion (AIC) Schwarz Criterion (SC) Maximized value of the logarithm of the likelihood function multiplied by -2

(-2 Log L) Other Options (Allison, 2014)◦ Hosmer-Lemeshow test◦ Standardized Pearson sum of squared residuals◦ Stukel’s test◦ The information matrix test

33

Page 34: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

PROC REPORT and PROC CONTENTS◦ Helps to summarize and display the data so that I know what is in my

dataset PROC FREQ and PROC UNIVARIATE◦ Helps explore some basic relationships within the data as it is in survey

format PROC CORR◦ Helps control for multicollinearity◦ Able to exclude variables too highly correlated

34

Page 35: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

35

Page 36: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Question◦ Do risk behaviors contribute to suicidal ideation in youth?

Variables◦ Suicidal Ideation, Smoking, Alcohol Use, Drug Use, Violence

Factor Analysis Conducted◦ Latent Profile Analysis and PROC FACTOR◦ Restructured variables based on identified factors

Logistic Procedure Chosen◦ PROC LOGISTIC

36

Page 37: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Without Latent Structure Analysis With Latent Structure Analysis

Model Fit Statistics Model Fit Statistics

Criterion Intercept Only

Intercept and Covariates Criterion Intercept Only

Intercept and Covariates

AIC 23420.137 22021.579 AIC 2292.821 2039.538

SC 23428.357 23920.217 SC 2298.444 3079.731

-2LogL 23418.137 21559.579 -2LogL 2290.821 1669.538

R-Square 0.0655 Max-Rescaled R-Square 0.1141 R-Square 0.2621 Max-Rescaled R-Square 0.3889

Testing Global Null Hypothesis: Beta=0 Testing Global Null Hypothesis: Beta=0

Test Chi-Square DF Pr>ChiSq Test Chi-Square DF Pr>ChiSq

Likelihood Ratio

1858.5581 230 <.0001 Likelihood Ratio

621.2836 184 <.0001

Score 2411.6208 230 <.0001 Score 565.1591 184 <.0001

Wald 6797242.4 230 <.0001 Wald 9760.8719 184 <.0001

Page 38: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

38

Page 39: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Types of latent analyses◦ 7 major types◦ 4 types covered today

Types of regression models◦ Many different types of regression models◦ Important to identify which is most appropriate

Structural Equation Model◦ Another way to work with latent variables◦ PROC CALIS

39

Page 40: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Considerations◦ Data Structure◦ Use of Model Fit Statistics◦ Missing Data Considerations◦ Model Appropriateness

40

Page 41: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Question◦ Do risk behaviors contribute to suicidal ideation in adolescents?

Answer◦ Results were significant◦ Odds ratio review of latent groups

Implications◦ Better accuracy◦ Sophisticated prevention programs

41

Page 42: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

42

Page 43: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

About Add Health (2010). Retrieved June 8th, 2014, from http://www.cpc.unc.edu/projects/addhealth/about. Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute Inc.Allison, Paul D. (2014, March). Measures of Fit for Logistic Regression. Paper presented at SAS® Global Forum 2014, Washington, D.CCenter for Disease Control and Prevention (2014). Combining YRBS data across years and sites. From http://www.cdc.gove/yrbs (accessed June, 2014).Child, D. (1990). The essentials of factor analysis, second edition. London: Cassel Educational Limited.Field, A., & Miles, J. (2012). Discovering Statistics Using SAS® , Thousand Oaks, CA: Sage Publications.Introduction to SAS® . UCLA: Academic Technolgy Services, Statistical Consulting Group. From http://www.ats.ucla.edu/stat/sas/notes2/ (accessed August, 2012).Jones, B. L., & Nagin, D. S. (2007). Advances in group-based trajectory modeling and an SAS procedure for estimating them. Sociological Methods and Research. 35 (4): 542-571.Jones, B. L., Nagin, D. S., & Roeder, K. (2001). A SAS procedure based on mixture models for estimating developmental trajectories. Sociological Methods and Research. 29 (3): 374-393.Korn, EL and Graubard, BI (1999). Analysis of Health Surveys. John Wiley & Sons, New York. p. 209-211.

43

Page 44: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Lanza, S. T., Dziak, J. J., Huang, L., Wagner, A., & Collins, L. M. (2013). PROC LCA & PROC LTA users' guide (Version 1.3.0). University Park: The Methodology Center, Penn State. Retrieved from http://methodology.psu.eduLatent Variable Models (2014). SAS® Institute Inc. Support. Retrieved June 10th, 2014, from http://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_intromod_a0000000339.htm. National Longitudinal Study of Adolescent Health (Add Health), 1994-2008 (ICPSR 21600) [Public Use Data]. (2014). Inter-university Consortium for Political and Social Research (ICPSR): The University of Michigan. Retrieved from http://www.icpsr.umich.edu/icpsrweb/ICPSR/studies/21600?archive=ICPSR&q=21600. O’Rourke, N., & Hatcher, L. 2013. A Step-by-Step Approach to Using SAS® for Factor Analysis and Structural Equation Modeling, Second Edition, Cary, NC: SAS® Institute Inc.PROC LCA & PROC LTA (Version 1.3.0) [Software]. (2013). University Park: The Methodology Center, Penn State. Retrieved from http://methodology.psu.eduPROC TRAJ [Software]. (2012). Carnegie Mellon University. Retrieved from http://www.andrew.cmu.edu/user/bjones/index.htm. SAS® Institute Inc. 2008. SAS /STAT® 9.2 User’s Guide. Cary, NC: SAS® Institute Inc. Thompson, D. M. (2006). Performing Latent Class Analysis Using the CATMOD Procedure. Paper presented at SUGI 31, San Fransisco, CA.

44

Page 45: Deanna Schreiber-Gregory Henry M Jackson Foundation for ...Allison, Paul D. 2012. Logistic Regression Using SAS® : Theory and Application, Second Edition, Cary, NC: SAS® Institute

Name: Deanna (DeDe) Naomi Schreiber-GregoryOrganization: Henry M Jackson Foundation for the Advancement of Military MedicineLocation: Bethesda, MDE-mail: [email protected]: https://twitter.com/DN_SchGregoryLinkedIn: https://www.linkedin.com/in/deanna-dede

schreiber-gregory-a54a7b66

45