Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Use the following code to input data into the SAS system: data kmeansdata; input cid engscore mathscore sciencescore; cards; 1 9 9 9 6 9
Use the following code to input data into the SAS system:
data kmeansdata;
input cid engscore mathscore sciencescore;
cards;
;
run;
The data represents student ids and their respective scores on English, Math and Science assessments. Use this data to run a kmeans clustering analysis using the three scores for the analysis, do not use a standardization method, set the maximum clusters to and output the cluster assignments.
Indicate the cluster mean score for English scores in Cluster to one decimal place.
Your Answer:
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