语法格式: weight 变量名;
功能:分析变量在所观察记录中占总观测记录的比重,即百分比
示例:
在SAS9.2编辑窗口输入源代码:
data apply_card
length index $16.
input index score1-score8 proportion
cards
one 1 2 1 3 2 4 2 4 0.3
two 3 5 2 5 2 5 6 8 0.1
thr 4 5 9 3 5 8 3 6 0.3
for 5 6 8 7 4 8 6 2 0.1
fiv 6 8 9 3 4 9 2 4 0.2
run
proc means mean std sum
var score1-score8
weight proportion
run
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)