ICA6
docx
keyboard_arrow_up
School
Wake Tech *
*We aren’t endorsed by this school
Course
152
Subject
Statistics
Date
Apr 3, 2024
Type
docx
Pages
2
Uploaded by mirarezk3
SAS: In-Class Activity 6
For this activity, you’ll create a SAS program. There is no need to upload it. This is a chance for you to practice with your instructor (and other students) present to obtain help.
Notes:
Although we aren’t turning this in, you should use good programming practices (see SAS File Submission Guidelines).
Include a header with your name and the purpose of the file.
Provide comments throughout the program explaining the upcoming code’s purpose.
Use spacing and indentation to improve readability.
The goal of this activity is to practice with numeric summaries.
The dataset for this activity has information about student performance and possible related factors. The dataset is available via the URL:
https://www4.stat.ncsu.edu/~online/datasets/StudentData.txt
The StudentData.txt data comes from the UCI machine learning repository. Information about the variables in the dataset is available at this link
.
Programming questions
Write (or copy from below) code corresponding to each question below. Note: We read in this data set in ICA 5 so you can just set up the library and the data set should already be there! That means you can likely skip step 2.
1.
Create a permanent library using a LIBNAME statement.
2.
(Optional) Create code to import the StudentData.txt file from the URL above into your permanent library created in question 1. Note: This is a ‘;’
delimited file. 3.
Run the following code (altering the names corresponding to the library and dataset) to make sure the g1 and g2 variables are stored as numeric variables:
DATA yourlib.yourdataname;
SET yourlib.yourdataname;
numG1 = input(G1, 8.);
numG2 = input(G2, 8.);
RUN;
4.
Use a PROC to produce the following summary statistics about the age and
numG1 variables (and no other summary statistics):
Sample Mean
Sample Standard Deviation
Sample Maximum
5.
Use a PROC to produce the same summary statistics about the age and numG1 variables (and no other summary statistics) at every combination of the variables of the Mjob variable.
6.
Use PROC UNIVARIATE to produce summary statistics about the numG1 and numG2 variables at every combination of the Mjob variable.
7.
Use a PROC step to find the correlation between the age, numG1, and numG2 variables for every setting (or level) of the Mjob variable.
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Related Documents
Related Questions
A Review O
Insert Format Tools Add-ons Help
Last edit was 4 minutes ago
BIUA
100%
Normal text
Arial
11
3
13. In your own words, what is the purpose of linear
programming and why is it useful?
arrow_forward
can you please help with how to insert it into the calculator
arrow_forward
Please use R-programming. Please provide the source code that makes the program run, and then screenshot the output.
Question: Suppose a parallel reliability system consists of cables of wires holding a bridge andthat one of them must have at least 90 wires. If the reliability of a single wire is 0.25 what is a minimal number of wires counted from 90 (or more) should that cable have in order to maintain the reliability of the system to at least 0.95?
arrow_forward
please answer the questions below ands provide the required codes in PYTHON. alsp provide explanation of how the codes were executed. Also make sure you provide codes that will be able to run even with different parameters as long as the output will be the same with any parameters given. these questions are not graded. provide accurate codes please
arrow_forward
Just need part D
arrow_forward
Q3-
You may need to use the appropriate technology to answer this question.
The product development group at Landon Corporation has been working on a new computer software product that has the potential to capture a large market share. Through outside sources, Landon's management learned that a competitor is working to introduce a similar product. As a result, Landon's top management increased its pressure on the product development group. The group's leader turned to PERT/CPM as an aid to scheduling the activities remaining before the new product can be brought to the market.
The activity time estimates (in weeks) are listed in the following table.
Activity
Optimistic
Most Probable
Pessimistic
A
3
4
5
B
3
3.5
7
C
4
5
6
D
2
3
4
E
5
8
11
F
8.5
9.5
13.5
G
4.5
6
7.5
H
6
7
14
I
2
2.5
6
J
4
5
6
(a)
Develop an activity schedule for this project and identify the critical path activities. (Enter your answers as a comma-separated list.)
(b)
Based solely…
arrow_forward
College Mathematics for Business, Econ, Life and Social Sci, 14e,
arrow_forward
please explain step by step and use python code if u can thankk u
arrow_forward
JOB UPDATE
EMERSON
GRAD ENGINEER
(FRESHERS)
SOFTWARE ENGG
NEW RELIC
BROWSERSTACK
(FRESHERS)
SOFTWARE ENGG
FULL STACK
DATA ENGINEER
GENPACT
+ PYTHON
CARS24
WORK FROM HOME
#vinkjobs
TELE
PERFORMANCE
Vinkjobs.com
CUSTOMER
SUPPORT
Search "Vinkjobs.com" on Google
arrow_forward
A linear programming computer package is needed.
Western Family Steakhouse offers a variety of low-cost meals and quick service. Other than management, the steakhouse operates with two full-time employees who work 8 hours per day. The rest of the employees are part-time employees who are scheduled for 4-hour shifts during peak meal times. On Saturdays the steakhouse is open from 11:00 a.m. to 10:00 p.m. Management wants to develop a schedule for part-time employees that will minimize labor costs and still provide excellent customer service. The average wage rate for the part-time employees is $7.60 per hour. The total number of full-time and part-time employees needed varies with the time of day as shown.
Time
Number of Employees Needed
11:00 a.m.–Noon
9
Noon–1:00 p.m.
9
1:00 p.m.–2:00 p.m.
9
2:00 p.m.–3:00 p.m.
3
3:00 p.m.–4:00 p.m.
3
4:00 p.m.–5:00 p.m.
3
5:00 p.m.–6:00 p.m.
6
6:00 p.m.–7:00 p.m.
12
7:00 p.m.–8:00 p.m.
12
8:00 p.m.–9:00 p.m.
7
9:00 p.m.–10:00…
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Algebra for College Students
Algebra
ISBN:9781285195780
Author:Jerome E. Kaufmann, Karen L. Schwitters
Publisher:Cengage Learning

Elementary Geometry for College Students
Geometry
ISBN:9781285195698
Author:Daniel C. Alexander, Geralyn M. Koeberlein
Publisher:Cengage Learning

Mathematics For Machine Technology
Advanced Math
ISBN:9781337798310
Author:Peterson, John.
Publisher:Cengage Learning,
Related Questions
- A Review O Insert Format Tools Add-ons Help Last edit was 4 minutes ago BIUA 100% Normal text Arial 11 3 13. In your own words, what is the purpose of linear programming and why is it useful?arrow_forwardcan you please help with how to insert it into the calculatorarrow_forwardPlease use R-programming. Please provide the source code that makes the program run, and then screenshot the output. Question: Suppose a parallel reliability system consists of cables of wires holding a bridge andthat one of them must have at least 90 wires. If the reliability of a single wire is 0.25 what is a minimal number of wires counted from 90 (or more) should that cable have in order to maintain the reliability of the system to at least 0.95?arrow_forward
- please answer the questions below ands provide the required codes in PYTHON. alsp provide explanation of how the codes were executed. Also make sure you provide codes that will be able to run even with different parameters as long as the output will be the same with any parameters given. these questions are not graded. provide accurate codes pleasearrow_forwardJust need part Darrow_forwardQ3- You may need to use the appropriate technology to answer this question. The product development group at Landon Corporation has been working on a new computer software product that has the potential to capture a large market share. Through outside sources, Landon's management learned that a competitor is working to introduce a similar product. As a result, Landon's top management increased its pressure on the product development group. The group's leader turned to PERT/CPM as an aid to scheduling the activities remaining before the new product can be brought to the market. The activity time estimates (in weeks) are listed in the following table. Activity Optimistic Most Probable Pessimistic A 3 4 5 B 3 3.5 7 C 4 5 6 D 2 3 4 E 5 8 11 F 8.5 9.5 13.5 G 4.5 6 7.5 H 6 7 14 I 2 2.5 6 J 4 5 6 (a) Develop an activity schedule for this project and identify the critical path activities. (Enter your answers as a comma-separated list.) (b) Based solely…arrow_forward
- College Mathematics for Business, Econ, Life and Social Sci, 14e,arrow_forwardplease explain step by step and use python code if u can thankk uarrow_forwardJOB UPDATE EMERSON GRAD ENGINEER (FRESHERS) SOFTWARE ENGG NEW RELIC BROWSERSTACK (FRESHERS) SOFTWARE ENGG FULL STACK DATA ENGINEER GENPACT + PYTHON CARS24 WORK FROM HOME #vinkjobs TELE PERFORMANCE Vinkjobs.com CUSTOMER SUPPORT Search "Vinkjobs.com" on Googlearrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Algebra for College StudentsAlgebraISBN:9781285195780Author:Jerome E. Kaufmann, Karen L. SchwittersPublisher:Cengage LearningElementary Geometry for College StudentsGeometryISBN:9781285195698Author:Daniel C. Alexander, Geralyn M. KoeberleinPublisher:Cengage LearningMathematics For Machine TechnologyAdvanced MathISBN:9781337798310Author:Peterson, John.Publisher:Cengage Learning,

Algebra for College Students
Algebra
ISBN:9781285195780
Author:Jerome E. Kaufmann, Karen L. Schwitters
Publisher:Cengage Learning

Elementary Geometry for College Students
Geometry
ISBN:9781285195698
Author:Daniel C. Alexander, Geralyn M. Koeberlein
Publisher:Cengage Learning

Mathematics For Machine Technology
Advanced Math
ISBN:9781337798310
Author:Peterson, John.
Publisher:Cengage Learning,