hi
i'd like to create tabulate table to compare the difference between the median of total 'CURRENT_BALANCE' and median of total 'weekint' for genders
And i tried to create table using this code but don't know how to fix this code.
HERE is my code
proc tabulate data = mergediff;
class gender;
var CURRENT_BALANCE weekint;
table gender ALL, median*(CURRENT_BALANCE ALL);
run;
HERE is my error:
318 proc tabulate data = mergediff;
319 class gender;
320 var CURRENT_BALANCE weekint;
321 table gender ALL, median*(CURRENT_BALANCE ALL);
322 run;
ERROR: Statistic other than N was requested without analysis variable in the following nesting : gender * Median * All.
ERROR: Statistic other than N was requested without analysis variable in the following nesting : All * Median * All.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE TABULATE used (Total process time):
real time 0.01 seconds
cpu time 0.00 seconds
I attached the result of data 'mergediff' by proc print for reference
Hi:
I see that you have WEEKINT in your VAR statement, but you do NOT have it in your TABLE statement. So I do not believe you are going to get the comparison you want unless you do something with WEEKINT in the TABLE statement.
This uses SASHELP.CLASS, but illustrates how you would compare median height with median weight:
** this generates error;
proc tabulate data = sashelp.class;
class sex;
var height weight;
table sex ALL, median*(height ALL);
run;
** This does not generate error;
** and compares median of height with median of weight;
proc tabulate data = sashelp.class;
class sex;
var height weight;
table sex ALL,
median*(height weight);
run;
cynthia
It sounds like you need a small adjustment to the TABLES statement. Where you now have this:
(CURRENT_BALANCE ALL)
try this instead:
(CURRENT_BALANCE WEEKINT)
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.