Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

proc npar1way

Status
Not open for further replies.

screwSAS

Technical User
Joined
Feb 10, 2009
Messages
4
Location
US
Can someone tell me why I keep getting the error:

2075 proc npar1way wilcoxon median edf data=sasuser.pedifalls;
ERROR: Procedure NPAR1WAY not found.
2076 class fall;
2077 var los;
2078 freq Freq;
2079 run;

NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE NPAR1WAY used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds



This is the exact code I have...I've looked up references, as far as I can tell it is the correct proc. Is it spelled wrong or something??? Thx.

proc npar1way wilcoxon median edf data=sasuser.pedifalls;
class fall;
var los;
freq Freq;
run;

 
Works for me, it either means you don't have SAS/STAT or you're using a very very old version of SAS.
 
I am running v 9.1.3!!!
 
your code looks correct, sounds like you don't have a license for SAS/STAT...to find out, type in

proc setinit;
run;

and look for SAS/STAT in the list of SAS products your company is licnesed to use.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top