Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In the shared folder for the course, there are a few folders corresponding to the modules. Use a LIBNAME statement to assign a library called
In the shared folder for the course, there are a few folders corresponding to the modules.
Use a LIBNAME statement to assign a library called NCSU to the ProgrammingInSASReadingData folder. The path will look something like this:
homeu######mysharedfilelinksuProgrammingInSASReadingData'
Once you've set up the library correctly, you should see a SAS dataset called APPLE in the NCSU library recall the menu usually in the bottom left of the SAS Studio window where you can see the libraries you have access to Run the following SAS code:
PROC MEANS DATA NCSU.APPLE MEAN STD;
RUN;
This should produce summary statistics for the variables in the apple data set. Report the mean for the Growth variable.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started