gpt4 book ai didi

sas - 如何获取SAS(proc phreg)中估计参数的值?

转载 作者:行者123 更新时间:2023-12-04 21:58:59 26 4
gpt4 key购买 nike

如何在 SAS (proc phreg) 中获取估计参数的值?我一直在搜索语法 OUTPUT 和基线,但它们只提供值 XBETA ets。

最佳答案

我不是统计数据,所以我只是猜测你的意思 - 这是一个我认为可以帮助你的例子:

ods trace on;
ods output ParameterEstimates=work.my_estimates_dataset;
proc phreg data=sashelp.class;
model age = height;
run;

ods trace off;

这是使用 SAS/Base 的 SAS Output Delivery System 组件。使用 ods trace on;,您将在 SAS 日志中看到对部分过程输出的引用:

Output Added:
-------------
Name: ParameterEstimates
Label: Maximum Likelihood Estimates of Model Parameters
Template: Stat.Phreg.ParameterEstimates
Path: Phreg.ParameterEstimates

您可以引用那些(通常通过名称或路径)并使用 ODS OUTPUT... 语句将它们存储在表中。有关更多信息,请查找 SAS ODS 用户指南。

关于sas - 如何获取SAS(proc phreg)中估计参数的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14678762/

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