由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 我也来请教一个SAS问题
相关主题
help!! help!! SAS help!! Urgent!!请教一个SAS小问题:如何得到 one cumulative varialbe of character variable?
Help! proc sql;cout not null value.SAS question: count non-missing value for different variables
SAS Proc SQL count问题[合集] how to calculate column sum not row sum in SAS? thanks a lo
[合集] Need help on data manipulation, thanks a lot!SAS question using PROC SQL 高手请进, 包子答谢
data grouping, sub-grouping by column variable in RSAS 请教
SAS问题来了Ask 2 simple SAS questions,thanks
SAS问题问个PROC SQL中INNER JOIN的问题
请问R Code和 Matlab Code 思路是否近似?再来问一个SAS问题
相关话题的讨论汇总
话题: count话题: a1话题: var2话题: a2话题: var1
进入Statistics版参与讨论
1 (共1页)
g****8
发帖数: 2828
1
数据出来是这样的
id var1 var2
1 a1 b
1 a2 b
1 a3 b
2 a1 b
2 a2 b
2 a3 b
我想只用一个sql语句,加上两个count
结果是
id var1 var2 count(var1) count(id)
1 a1 b 3 2
1 a2 b 3 2
1 a3 b 3 2
2 a1 b 3 2
2 a2 b 3 2
2 a3 b 3 2
这样,我group by 的时候,应该group by哪个呀?如果group by var2的话,出来的两
个count是一样的。
还是说一个sql解决不了?
b*****m
发帖数: 99
2
Apply SAS jobs
http://jobguiding.com/statistics/sas.html

【在 g****8 的大作中提到】
: 数据出来是这样的
: id var1 var2
: 1 a1 b
: 1 a2 b
: 1 a3 b
: 2 a1 b
: 2 a2 b
: 2 a3 b
: 我想只用一个sql语句,加上两个count
: 结果是

g****8
发帖数: 2828
3
这是什么?
没明白什么意思。

Apply SAS jobs
★ Sent from iPhone App: iReader Mitbbs 7.52 - iPad Lite

【在 b*****m 的大作中提到】
: Apply SAS jobs
: http://jobguiding.com/statistics/sas.html

L****n
发帖数: 3545
4
一个SQL select count(distinct var1),count(distinct id) into :v1, v2
然后一个DATA STEP SET 原数据加上两列常数值。
至于GROUP BY,没明白你要干啥。

【在 g****8 的大作中提到】
: 数据出来是这样的
: id var1 var2
: 1 a1 b
: 1 a2 b
: 1 a3 b
: 2 a1 b
: 2 a2 b
: 2 a3 b
: 我想只用一个sql语句,加上两个count
: 结果是

g****8
发帖数: 2828
5
因为我数据没有多给,var2还有好多。
不过,你提醒我了,应该加distinct 就能解决。忘记了。
我就是想一个sql解决,不想再加其他步骤。

【在 L****n 的大作中提到】
: 一个SQL select count(distinct var1),count(distinct id) into :v1, v2
: 然后一个DATA STEP SET 原数据加上两列常数值。
: 至于GROUP BY,没明白你要干啥。

1 (共1页)
进入Statistics版参与讨论
相关主题
再来问一个SAS问题data grouping, sub-grouping by column variable in R
A SAS questionSAS问题来了
SAS question - baoziSAS问题
请教SAS LABEL问题。请问R Code和 Matlab Code 思路是否近似?
help!! help!! SAS help!! Urgent!!请教一个SAS小问题:如何得到 one cumulative varialbe of character variable?
Help! proc sql;cout not null value.SAS question: count non-missing value for different variables
SAS Proc SQL count问题[合集] how to calculate column sum not row sum in SAS? thanks a lo
[合集] Need help on data manipulation, thanks a lot!SAS question using PROC SQL 高手请进, 包子答谢
相关话题的讨论汇总
话题: count话题: a1话题: var2话题: a2话题: var1