由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - How to calculate a weight for each observation in a sas datas et?
相关主题
跪问一个data management的问题sas重复计数
请教一道sas 题求SAS code,有包子
请教一下proc ttest, weighted dataSAS macro question
How to use Proc format求问sas数据处理
关于recode data的问题,多谢。[合集] 如何检验normality??
请教一个proc glimmix的问题Import excel file to sas (the first 8 or more observations
Proc reg, weight, and predict笨人求问sas function
请教一个survey weight的问题SAS应用问题
相关话题的讨论汇总
话题: calculate话题: weight话题: datas话题: each
进入Statistics版参与讨论
1 (共1页)
m******1
发帖数: 19713
1
I have a data set like this:
id x
1 0.254
2 0.564
3 0.875
4 0.689
.......
The weight for each observation is x/sum of x's. What is the best way to
calculate it?
Thanks.
c*******o
发帖数: 3829
2
Here you go:
Proc sql;
create table two as
select id, x, x/sum(x) as weight
from one;
quit;
m******1
发帖数: 19713
3
Thank you so much.
This is very helpful.

【在 c*******o 的大作中提到】
: Here you go:
: Proc sql;
: create table two as
: select id, x, x/sum(x) as weight
: from one;
: quit;

1 (共1页)
进入Statistics版参与讨论
相关主题
SAS应用问题关于recode data的问题,多谢。
help for sas program请教一个proc glimmix的问题
问个关于GLS的问题Proc reg, weight, and predict
[提问]怎样提取SAS Dateset的observation number?请教一个survey weight的问题
跪问一个data management的问题sas重复计数
请教一道sas 题求SAS code,有包子
请教一下proc ttest, weighted dataSAS macro question
How to use Proc format求问sas数据处理
相关话题的讨论汇总
话题: calculate话题: weight话题: datas话题: each