Hi All,
One of our scoring job in SAS is throwing me an error as below. We are using TGSCORE function in data step in SAS EG program. TGSCORE function is eminer function and we dont have eminer app.
We are using SAS9.4 M7 version. Can we use TGSCORE in SAS EG program without having SAS Eminer? Please advise.
NOTE: Reading configuration file.
ERROR: The scoring terminated without completion.
ERROR: Unexpected error detected in function TGSCORE:
ERROR: The SAS System stopped processing this step because of insufficient memory.
No, but the error message you have looks different than just not knowing about the function.
2079 data x; 2080 x=tgscore(); ------- 68 ERROR 68-185: The function TGSCORE is unknown, or cannot be accessed. 2081 run; NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.X may be incomplete. When this step was stopped there were 0 observations and 1 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.00 seconds
@Kiran26 wrote:
When I ran same code I got the below error message
27 ! data x;
28 x=tgscore();run;
_______
71
ERROR 71-185: The TGSCORE function call does not have enough arguments.
So you have the function. Now you need to actually debug your code and understand why it is causing the error you posted in the first message.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.