BookmarkSubscribeRSS Feed
munitech4u
Quartz | Level 8

I am trying following but its not working:

PROC NPAR1WAY data=sales_mkt DSCF WILCOXON;

    class product;

    exact WILCOXON;

    var sec_pos;

    run;

its throwing error for DSCF option.

Any suggestions?

7 REPLIES 7
SteveDenham
Jade | Level 19

Guessing here.  The DSCF may be incompatible with the EXACT specification for Wilcoxon.  What happens with:

PROC NPAR1WAY data=sales_mkt DSCF WILCOXON;

    class product;

    var sec_pos;

    run;

If this throws the same error, then contacting Tech Support is probably in order.

Steve Denham

munitech4u
Quartz | Level 8

It throws the same error. Syntax error.

data_null__
Jade | Level 19

My suggestion is to show the error message.  Perhaps also include the version of SAS you are using.

munitech4u
Quartz | Level 8

I am using SAS 9.2. Error message is syntax error.

The CLASS variable has 6 products.

SteveDenham
Jade | Level 19

There is the answer.  The DSCF option doesn't appear in the documentation until SAS/STAT12.3 (SAS9.3).  Prior versions (9.2, 9.22) would likely throw a syntax error.

Steve Denham

data_null__
Jade | Level 19

That option is not available in SAS 9.2

Reeza
Super User

The DSCF analysis is available when the number of CLASS variable levels (samples) is greater than 2.

How many levels in your Class variable?

Error message and full log is useful as well.

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