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.
我正在尝试使用“平均值”和“标准偏差”等统计数据制作一个 proc 表格。但是,当我制作表格时,统计信息会相互叠加(如附图所示),我希望它们并排排列以使表格更短。有没有办法做到这一点?谢谢!
是的,有:您在逗号之前指定的所有内容都在行中。
proc tabulate data=sashelp.bweight; class Married MomEdLevel Boy; var MomWtGain Weight; table Married * MomEdLevel * (min p10 mean p90 max) , Boy * (MomWtGain Weight); run;