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!!

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

Register now

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