Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您如何格式化 SAS 中 Proc GLM 中 ODS 的参数估计值?我的代码是
proc glm data = dat; model y = x1 x2 ; ods output ParameterEstimates=parmsdat ; run ;
我想将 beta 至少写到第四位有效数字,但如果 beta_x1 是 int,并且 beta_x2 绝对小于 1,则输出会将 beta_x2 四舍五入到最接近的数字。有什么建议么?提前致谢。