BookmarkSubscribeRSS Feed
michaelm90
Fluorite | Level 6

Hello, I was given this question:  

 

(dataset: SASHELP.BWEIGHT) Create a dataset including first 2,000 observations only in SASHELP.BWEIGHT and report the p-value of testing if two variables MomSmoke and VISIT are independent. Note that you should determine if Chi-sq test is valid or not. Up to four decimal places, please. (Hint: use PROC FREQ) 

 

I understand how to calculate the p-value if the two variables are independent, I am just confused on making a new dataset including the first 2,000 observations of sashelp.bweight. 

1 REPLY 1
Reeza
Super User
data want;
set have (obs=2000);

Use the OBS= Dataset option.

 

https://documentation.sas.com/?docsetId=ledsoptsref&docsetTarget=p0h5nwbig8mobbn1u0dwtdo0c0a0.htm&do...

 

The first SAS e-course is free and covers a lot of the questions you've been asking. It may be worth taking sometime to go over the course materials.

 


@michaelm90 wrote:

Hello, I was given this question:  

 

(dataset: SASHELP.BWEIGHT) Create a dataset including first 2,000 observations only in SASHELP.BWEIGHT and report the p-value of testing if two variables MomSmoke and VISIT are independent. Note that you should determine if Chi-sq test is valid or not. Up to four decimal places, please. (Hint: use PROC FREQ) 

 

I understand how to calculate the p-value if the two variables are independent, I am just confused on making a new dataset including the first 2,000 observations of sashelp.bweight. 


 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 625 views
  • 1 like
  • 2 in conversation