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

Below is my code. I'm getting the output without error, but no plot. 

 

data CHI.rep_sex;

input Survey $ Sex $ Count; DATALINES;

BRFSS MALE 80483

BRFSS FEMALE 129994

BRFSS MISSING 761

VOH MALE 982

VOH FEMALE 1817

VOH MISSING 7

;

Run;

 

ods graphics on;

proc corresp data=CHI.rep_sex dimens=1;

tables survey, sex;

weight count;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

You are performing a simple correspondence analysis. The ConfigPlot is only available for multiple correspondence analysis. Try this:

data rep_sex;
input Survey $ Sex $ Count; 
DATALINES;
BRFSS MALE 80483
BRFSS FEMALE 129994
BRFSS MISSING 761
VOH MALE 982
VOH FEMALE 1817
VOH MISSING 7
;

proc corresp data=rep_sex MCA;
tables sex survey;
weight count;
run;

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

You are performing a simple correspondence analysis. The ConfigPlot is only available for multiple correspondence analysis. Try this:

data rep_sex;
input Survey $ Sex $ Count; 
DATALINES;
BRFSS MALE 80483
BRFSS FEMALE 129994
BRFSS MISSING 761
VOH MALE 982
VOH FEMALE 1817
VOH MISSING 7
;

proc corresp data=rep_sex MCA;
tables sex survey;
weight count;
run;
greesamu
Obsidian | Level 7

Perfect, thank you!!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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
  • 966 views
  • 1 like
  • 2 in conversation