Hi !
I have this following requirement:
I have a data file 'Score' with two columns.
The first column name is 'School' and second column name is 'marks'.
I have four schools named 'A', 'B', 'C', 'D'. School A has marks for 40 students, school B has that for 30 students, school C for 32 students and school D has that for 10 students.
So in total I have 112 rows in the data set
I want to write a SAS code which first computes the median marks for each school and then removes data for all students which is below the median score for that particular school.
Can you help me to code this?
Thanks
Raja
How about something like:
data have;
input school marks;
cards;
1 1
1 2
1 3
1 4
1 5
2 1
2 2
2 3
2 4
;
proc summary data=have nway;
var marks;
class school;
output out=medians (drop=_:) median=median;
run;
data want;
merge have medians;
by school;
if marks ge median;
run;
How about something like:
data have;
input school marks;
cards;
1 1
1 2
1 3
1 4
1 5
2 1
2 2
2 3
2 4
;
proc summary data=have nway;
var marks;
class school;
output out=medians (drop=_:) median=median;
run;
data want;
merge have medians;
by school;
if marks ge median;
run;
Thanks.. this will do for me...
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.