logo Hurry, Grab up to 30% discount on the entire course
Order Now logo

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Norman RoxManagement
(4/5)

614 Answers

Hire Me
expert
Anuj MittalMathematics
(/5)

782 Answers

Hire Me
expert
Charu SinghalStatistics
(/5)

895 Answers

Hire Me
expert
Saurbh TiwariAccounting
(5/5)

655 Answers

Hire Me
Biostatistics
(5/5)

research analysis project for the course requires that you apply appropriate descriptive statistical methods to summarize, present and report results

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Research Project

The research analysis project for the course requires that you apply appropriate descriptive statistical methods to summarize, present and report results. The primary objective of this assignment is to provide you with hand on experience on evidence based public health practice. Students will obtain experience in summarizing, analyzing, interpreting and presenting of epidemiologic data.  The dataset is available on Blackboard in formats for SAS. The assignment is written in a way that assumes you are using SAS. 

The purpose of the study was to summarize the data in the dataset appropriately to identify disparities among different racial groups (RIDRETH1) by variety of variables. Specifically, we wanted to use the NHANES data from 2015-2016 cycle to see whether there are differences among different racial groups on different variables.

Finish CITI training and submit CITI certificate (Bonus 10 points)

 

The variables of interest include education (DMDEDUC2), Ratio of family income to poverty(INDFMPIR) , BMI(BMXBMI), systolic blood pressure (BPXSY3), Diastolic: Blood pres (3rd rdg) mm Hg (BPXDI3), Ever used marijuana or hashish (DUQ200), Ever used cocaine/heroin/methamphetamine (DUQ240),  Fasting Glucose (mg/dL)( LBXGLU), Ever used heroin(DUQ290)

 

Data Cleaning

Data cleaning is first thing to do when we have a dataset. 

 

1. Run the proc means for continuous variables to check whether this is unusual value for each continuous variable. 

For example, blood pressure cannot be 0. If there is 0, we should record it as missing. Of course, in reality, we should investigate whether it has 0: entry errors or typos or no recording. 

 

At this time, we just record it as missing since we cannot check. 

 

data nhanes.nh1516; set nhanes.nh1516 ;

if BPXDI3=0 then BPXDI3_1 = .;

else  BPXDI3_1 = BPXDI3; 

run;

 

The code above is to say  creating a new variable as BPXDI3_1. For all observations with  BPXDI3 = 0, the new variables BPXDI3_1 = . (missing. ). All other observations , we let BPXDI3_1 = BPXDI3. 

 

  

2. To have meaningful test results, we need to clean categorical variables as well. we saw the records with “refused to answer” or “do not know” or else. 

Usually we need to recode those records as missing because in the dataset they are treated as a category, but they are no real meaning. 

 

To do that, run proc freq to check  which variables have those codes and need to recode . 

(5/5)
Attachments:

Related Questions

. The fundamental operations of create, read, update, and delete (CRUD) in either Python or Java

CS 340 Milestone One Guidelines and Rubric  Overview: For this assignment, you will implement the fundamental operations of create, read, update,

. Develop a program to emulate a purchase transaction at a retail store. This  program will have two classes, a LineItem class and a Transaction class

Retail Transaction Programming Project  Project Requirements:  Develop a program to emulate a purchase transaction at a retail store. This

. The following program contains five errors. Identify the errors and fix them

7COM1028   Secure Systems Programming   Referral Coursework: Secure

. Accepts the following from a user: Item Name Item Quantity Item Price Allows the user to create a file to store the sales receipt contents

Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip

. The final project will encompass developing a web service using a software stack and implementing an industry-standard interface. Regardless of whether you choose to pursue application development goals as a pure developer or as a software engineer

CS 340 Final Project Guidelines and Rubric  Overview The final project will encompass developing a web service using a software stack and impleme