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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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