If possible could you say how can change cutoff value in PLS analysis, for example, I ask a value 1.5,
Thanks a lot,
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,
Are you talking about PROC PLS? Cutoff for what?
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,
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;
thank you so much
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.