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.

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 16. 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
  • 2 replies
  • 475 views
  • 0 likes
  • 3 in conversation