BookmarkSubscribeRSS Feed
EMB
Calcite | Level 5 EMB
Calcite | Level 5
I am trying to produce a bubble plot to show agreement between 2 raters assessing a clinical score (integer number). I defined x as the 1st rater score and y as the 2nd rater score. My question is how to define ‘size’ so that the bubbles size represent the number of cases with agreement between both raters? Thanks!
2 REPLIES 2
PGStats
Opal | Level 21

A simple example:

 

data fake;
call streaminit(743439);
/* There are 5 possible ratings. Rater2 disaggrees with Rater1 20% of the time */ 
do case = 1 to 100;
    rate1 = rand("integer", 5);
    if rand("bern", 0.2) then rate2 = rand("integer", 5);
    else rate2 = rate1;
    output;
    end;
run;

proc sql;
create table ratings as
select rate1, rate2, count(*) as n
from fake
group by rate1, rate2;
quit;

proc sgplot data=ratings;
bubble x=rate1 y=rate2 size=n / proportional transparency=0.3;
run;

PGStats_0-1628451514409.png

 

PG
ballardw
Super User

If you show some example of your current data we might have some clues.

Basically you need to calculate that count (or rate) from your data and without knowing what your data looks like we can't provide anything targeted to your situation.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 824 views
  • 0 likes
  • 3 in conversation