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. 


 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 771 views
  • 1 like
  • 2 in conversation