BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Marzi
Obsidian | Level 7

I'm wondering why when I add any of the second means, the result is zero?!

data error;
input actual predicted;
datalines;
4   5 
6   6
9   8
10  10
4   4
6   8
4   4
7   9
8   8
7   5
;
run;
proc sql;
    select mean((mean(actual) - actual)**2) format 20.3 into :adjrsq from error;
quit;

sorry if my question is very simple to solve, I'm very beginner in SAS! 

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

I think what you want is:

 

proc sql;
    select mean(
        ((select mean(actual) from error) - actual)**2) format 20.3 
    into :adjrsq 
from error;
quit;

%put &adjrsq;
PG

View solution in original post

5 REPLIES 5
RW9
Diamond | Level 26 RW9
Diamond | Level 26

What is it your trying to do?  The mean function will return one record, which is the mean, and that row will also contain the value which is the same.  So say 4 is the mean value of all that data, then the line your working on looks like this:

mean=4, actual=4

so:

mean((4 - 4)**2)

Will always return 0, as 4-4 is 0.

Maybe you want to merge mean onto the data so that you have all the data and mean:

proc sql;
  create table INTER as 
  select A.*,
           B.MEAN
  from   ERROR A
  left join (select mean(ACTUAL) as MEAN from ERROR) B
  on      1=1;
  create table WANT as
  select  mean((MEAN - ACTUAL)**2) 
  into :ADJRSQ 
  from INTER;
quit;

You could shrink the code above, but I am showing the interveening step. 

Marzi
Obsidian | Level 7
Dear RW9;
Thanks for your comment, I used your guideline for some other purpose, was really useful.
LinusH
Tourmaline | Level 20
Just want to add that mean() with one argument will be executed as the SQL aggregate function (for all records, or per GROUP BY if specified).
With multiple arguments it's the SAS Language function that gets executed and will return the mean of the listed arguments (for each record).
Data never sleeps
PGStats
Opal | Level 21

I think what you want is:

 

proc sql;
    select mean(
        ((select mean(actual) from error) - actual)**2) format 20.3 
    into :adjrsq 
from error;
quit;

%put &adjrsq;
PG
Marzi
Obsidian | Level 7
Thanks PG Stats

SAS Innovate 2025: Call for Content

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 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 5 replies
  • 1269 views
  • 3 likes
  • 4 in conversation