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

If possible could you say how can change cutoff value in PLS analysis, for example, I ask  a value 1.5,

Thanks a lot,

 

1 ACCEPTED SOLUTION

Accepted Solutions
userbester1
Fluorite | Level 6

Sorry, Yes I am talking about PROC PLS. How can change the cut-off for the VIP score? I think the default is 0.8. I want to increase the value to 1.5.

Thanks again,

 

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

Are you talking about PROC PLS? Cutoff for what?

--
Paige Miller
userbester1
Fluorite | Level 6

Sorry, Yes I am talking about PROC PLS. How can change the cut-off for the VIP score? I think the default is 0.8. I want to increase the value to 1.5.

Thanks again,

 

PaigeMiller
Diamond | Level 26

as far as I can see, the PROC PLS documentation does not list a way to change a cutoff for VIP

 

You could extract the VIP values and create your own plot. Example:

 

proc pls data=sashelp.class plots=vip;
    ods output VariableImportancePlot=vip;
    class sex;
    model height = weight age sex;
run;
--
Paige Miller
userbester1
Fluorite | Level 6

thank you so much

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 666 views
  • 3 likes
  • 2 in conversation