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

Hi,

I've run a discriminant analysis for a binary category group & the code I used is the following:

proc discrim data=discrim;

class group;

var var1 var2 var3 var4 var5;

run;

Now, I want to plot the each groups discriminant scores across the 1st linear discriminant function. Can anybody please tell me the code to do it?

Regards,

Ari14

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

You can use the following code to get linearDisdinctFunction ,then use proc gplot

ods output LinearDiscFunc=line;
proc discrim data=sashelp.iris method=normal pool=yes;
class Species;
var PetalWidth;
title2 ’Using Normal Density Estimates with Equal Variance’;
run;

Ksharp

View solution in original post

4 REPLIES 4
FriedEgg
SAS Employee

Not really certain what it is you are attempting to accomplish here but you might find this helpful:

ods output LinearDiscFunc=discrim_results;

proc discrim data=discrim;

  class=group;

  var var1-var5;

run;

ari14
Calcite | Level 5

Hi,

I R software, one can visualy examine how well the discriminant function demarcate the 2 groups. Please find the snap below. But in SAS I just can't able to do it. I was just looking for SAS code to get a plot like the one below.

DA_Plot.jpeg

Ksharp
Super User

You can use the following code to get linearDisdinctFunction ,then use proc gplot

ods output LinearDiscFunc=line;
proc discrim data=sashelp.iris method=normal pool=yes;
class Species;
var PetalWidth;
title2 ’Using Normal Density Estimates with Equal Variance’;
run;

Ksharp

ari14
Calcite | Level 5

Thanks Ksharp!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 4 replies
  • 2230 views
  • 0 likes
  • 3 in conversation