由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - a sas question
相关主题
请教 sas tabulate. 在线等!sas code求助,有关date macro
请问proc report的问题proc report与proc tabulate有什么区别?
sas proc report的问题。proc report created too hugh excel file....
proc report format questionSAS 问题
求问 sas _c_ 什么意思完全不懂SAS,急请教一个问题
问一个特简单的问题,sasHelp on a SAS question
请教proc sql请问, 怎么加labels?
问个SAS入门级的问题。。多谢。。请教什么统计方法来比较哪个方案比较合适?
相关话题的讨论汇总
话题: age话题: cnt话题: define话题: sas话题: sex
进入Statistics版参与讨论
1 (共1页)
i*********e
发帖数: 783
1
* E2_5a.sas
*
求下面一个sas 程序改错,谢谢!
* Chapter 2 Exercise 5
*
* Create a counter for each age group.
* Why does the following fail. Can you fix the problem?;
proc sort data=sashelp.class out=cl1;
by age;
run;
data class;
set cl1;
by age;
if first.age then cnt+1;
run;
title 'Count the Age Groups';
proc report data=class nowd;
column cnt age sex, height;
define cnt / order;
define age / group;
define sex /across;
define height/analysis;
run;
i*********e
发帖数: 783
2
Create a counter for each age group
s******8
发帖数: 102
3
check the document for PROC Report, if need the data in order of SEX
variable as well, for example order by cnt age sex?
s******8
发帖数: 102
4
define cnt /order group;
1 (共1页)
进入Statistics版参与讨论
相关主题
请教什么统计方法来比较哪个方案比较合适?求问 sas _c_ 什么意思
SAS daily tips - PROC FREQ问一个特简单的问题,sas
SAS daily tips - PROC GPLOT请教proc sql
Re: 请问SAS如何学起?问个SAS入门级的问题。。多谢。。
请教 sas tabulate. 在线等!sas code求助,有关date macro
请问proc report的问题proc report与proc tabulate有什么区别?
sas proc report的问题。proc report created too hugh excel file....
proc report format questionSAS 问题
相关话题的讨论汇总
话题: age话题: cnt话题: define话题: sas话题: sex