In this task, you will check for outliers and their potential impact using the following steps:
Before you analyze your data, it is very important that you check the distribution and normality of the data and identify outliers for continuous variables.
Statements | Explanation |
---|---|
data =nh1.demo2_nh1 normal plot ; |
Use the proc univariate procedure to get all default descriptive statistics, such as mean, minimum and maximum values, standard deviation, and skewness, etc...Use the normal plot option to obtain a plot of normality. |
where n1bm0101>=20 ; |
Use the where statement to select the participants who were age 20 years and older. |
id seqn; |
Use the id statement to list the sequence numbers associated with extreme values in the output. |
var N1LB0237 N1ME0228
N1ME0231 N1ME0718 N1ME0721 N1BM0260 N1BM0266; ; |
Use the var statement to list the variables of interest. |
Highlighted items from the univariate analysis output:
In this example, you will plot the survey weight for stands 1-65 (n1bm0176) against the distribution of the cholesterol variable to determine whether the extreme observations are influential outliers.
This weight was used because the question "Has doctor ever told you that you ... [high blood pressure]?" (n1ah290) was only asked of participants at stands 1-65. Please see NHANES III Clean & Recode Data, Task 1 - How to Identify and Recode Missing Data for a full explanation.
Statement | Explanation |
---|---|
symbol1 value =dot height = .2 ; |
Use the option statements, symbol and height, to format the output of the plot. |
data =demo2_nh1; plot N1BM0176*(N1LB0237 N1ME0228 N1ME0231 N1ME0718 N1ME0721 N1BM0260 N1BM0266) /frame ; title 'NHANES I, adults age 20 years and older' ; ; |
Use the proc gplot procedure to plot the total serum cholesterol (n1lb0237) by the corresponding sample weight for each observation in the dataset. Use the where statement to select the participants who were age 20 years and older. |
Highlighted items from plotting the survey weight against the distribution of the cholesterol variable:
In this step you will:
Statements | Explanation |
---|---|
set demo2_nh1; |
temp2_nh1;
Use the data and set statements to refer to your analytic dataset. |
if seqn in ( 18969 , 14145, 16025 ) then delete ; |
Use the if…then statements to delete the outliers using their SEQN previously identified in the plot of survey weight versus distribution of the variable. The SEQNs associated with these outliers are listed in the proc univariate output under extreme observations. |
value race 1 = 'White' 2 = 'Black' 3 = 'Other Race' ; ; |
;
Use the proc format procedure to give easily understood labels to your race/ethnicity variable values. |
data =demo2_nh1 mean stderr maxdec = 1 ; |
Use the proc means procedure to determine the mean and standard error for the dataset with the outliers. |
where n1bm0101>=20 ; |
Use the where statement to select the participants who were age 20 years and older. |
var n1lb0237; |
Use the var statement to indicate the variable of interest. |
class n1bm0103; |
Use the class statement to group the variable of interest by race/ethnicity categories. |
weight n1bm0176; |
Use the weight statement to account for the unequal probability of sampling and non-response. In this example, the examined sample weight for all six years of data is used. |
format n1bm0103 race. ; |
Use the format statement to label your race variable with English labels you defined in the proc format statement. |
data =temp2_nh1 mean stderr maxdec = 1 ; |
Use the proc means procedure to determine the mean and standard error for the dataset without the outliers. |
where n1bm0101>=20 ; |
Use the where statement to select the participants who were age 20 years and older. |
var n1lb0237; |
Use the var statement to indicate the variable of interest. |
class n1bm0103; |
Use the class statement to group the variable of interest by race/ethnicity categories. |
weight n1bm0176; |
Use the weight statement to account for the unequal probability of sampling and non-response. In this example, the examined sample weight is used. |
format n1bm0103 race. ; |
Use the format statement to label your race variable with easily understood labels you defined in the proc format statement. |
Highlighted items from comparison of the results with and without outliers: