gpt4 book ai didi

SAS在行中找到非零最小值

转载 作者:行者123 更新时间:2023-12-04 04:39:53 25 4
gpt4 key购买 nike

有人知道如何使用 SAS 中的 min 函数在一行中找到非零最小值吗?或者 SAS 代码中的任何其他选项?

当前代码:

PIP_factor = `min(PIPAllAutos, PIPNotCovByWC, PIPCovByWC, PIPNotPrincOpByEmpls);

最佳答案

我认为您需要使用数组解决方案,即

array pipArray pip:; *or whatever;
PIP_factor=9999;
do _n = 1 to dim(pipArray);
if pipArray[_n] > 0 then
PIP_factor = min(PIP_factor,pipArray[_n]);
end;

或者这样的。

关于SAS在行中找到非零最小值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19058771/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com