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.
私のデータセットは非常に単純です。比率を含む 1 つの列とカテゴリ変数を含む別の列だけです。各クラスの標準偏差と信頼区間を計算する必要があります。
標準偏差の信頼区間を計算する SAS (proc SQL) の組み込み関数はありますか? Excel関数のconfidence()のようなものは何ですか?
ありがとう!
Proc SQl ではなく、PROC Univariate は、平均、標準偏差、および分散の信頼区間を提供します。詳細は、SAS サポート ドキュメントで入手できます。
https://support.sas.com/documentation/cdl/en/procstat/63104/HTML/default/viewer.htm#procstat_univariate_sect064.htm
次のステートメントは、身長の母集団の平均、標準偏差、および分散の信頼限界を生成します。
ods select BasicIntervals; proc univariate data=Heights cibasic; var Height; run;