BookmarkSubscribeRSS Feed
iank131
Quartz | Level 8

Hi,

 

Here's a real easy problem. It could be due to my PC SAS version 9.4 running Windows 7. 

 

I am trying to multiply all the elements of a vector using SAS function PROD, but it is giving me an error "ERROR 68-185: The function PROD is unknown, or cannot be accessed." The vector may include missing values. The idea is very similar to SAS function SUM, which ignores missing values and sums all the values of the vector.

 

For example:

data _null_;
a = prod(2, 1, ., 3);
put "a equals " a;
run;

But then I get the error. If instead of "prod" I write "sum", there is no error.

 

Is there something wrong with my base SAS? Do other people have the same problem? What am I doing wrong?

6 REPLIES 6
Peter_C
Rhodochrosite | Level 12
I expect you should be using PROD() in SAS/IML
iank131
Quartz | Level 8
SUM() is also SAS/IML but it works in base SAS. I am wondering why PROD() does not work in base SAS, or if is there an equivalent such function? Thanks.
Kurt_Bremser
Super User

PROD() was introduced with SAS/IML, much later than the SUM() function that has been in Base SAS as long as I can remember (SAS 6.09).

It seems nobody ever had a real need for such a function in Base.

You might put it up as a ballot idea.

PeterClemmensen
Tourmaline | Level 20

So in a product context, you want your missing values to be treated like a 1 right?

iank131
Quartz | Level 8
Yes. Or just ignore missing values.
Tom
Super User Tom
Super User

There is not a PROD() function in BASE SAS.  But if your numbers are positive then you might be able to use GEOMEAN() function instead.  Example:

 

data have ;
  input a1-a4 ;
cards;
2 1 . 3
1 1 1 1
10 10 10 10
;
data want ;
  set have;
  array x a1-a4 ;
  prod1 = 1;
  do i=1 to dim(x);
    prod1=prod1*coalesce(x(i),1);
  end;
  prod2=geomean(of x(*))**n(of x(*));
  put (_all_) (=);
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 1229 views
  • 2 likes
  • 5 in conversation