Returns the log of 1 plus the argument.
specifies a numeric variable, constant, or expression.
LOG1PX(x)
LOG(1+x)
data _null_; x=log1px(0.5); put x=; run;
x=0.4054651081
data _null_; x=log1px(1.e-5); put x= hex16.; y=log(1+1.e-5); put y= hex16.; run;
x=3EE4F8AEA9AE7317 y=3EE4F8AEA9AF0A25