由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - sas coding problem(help!!!)
相关主题
sas questionSAS Macro 问题请教 。。。
请教一个proc transpose的问题is proc tabulate the right procedure to use?
请教 macro variable 和 PROC SQL的问题请问如果用SAS 解决这个问题
SAS里怎么根据VALUE来选择需要OUTPUT的COLUMNS求问 sas _c_ 什么意思
问个sas编程的题一个看着很简单sas的问题
urgent help using sas or R for data management很挑战的data transformation problem help
一个关于macro的问题,多谢。一个 proc mixed 的问题
[SAS] number of missing values for character vars排序的问题,请问高手用SAS怎么做?
相关话题的讨论汇总
话题: variables话题: q11a4话题: q10a2话题: q10a1话题: q1a2
进入Statistics版参与讨论
1 (共1页)
p******5
发帖数: 17
1
have 6 variables:
q10a1 q10a2 q1a2 q2a1 q20a3 q11a4
and how to change these variables into:
q1a2 q2a1 q10a1 q10a2 q11a4 q20a3
Thanks!!!
c*******o
发帖数: 3829
z**********i
发帖数: 12276
3
另外,proc sql也可以.

【在 c*******o 的大作中提到】
: Check here:http://www.sascommunity.org/wiki/Re-ordering_variables
p******5
发帖数: 17
4
But what if variables have more than 1000, please explain how to sort column.

【在 c*******o 的大作中提到】
: Check here:http://www.sascommunity.org/wiki/Re-ordering_variables
d******9
发帖数: 404
5
Proc contents ???
It lists all the variable names alphabetically.

column.

【在 p******5 的大作中提到】
: But what if variables have more than 1000, please explain how to sort column.
r******m
发帖数: 369
6
你这个第二个结果有什么规律吗?
h******s
发帖数: 3420
7
先排第一个再排第二个number

【在 r******m 的大作中提到】
: 你这个第二个结果有什么规律吗?
A*******s
发帖数: 3942
8
since it's not alphabetical ordering, you may need to extract substrings
containing only letters or numbers and then order those substrings
sequentially.

【在 p******5 的大作中提到】
: have 6 variables:
: q10a1 q10a2 q1a2 q2a1 q20a3 q11a4
: and how to change these variables into:
: q1a2 q2a1 q10a1 q10a2 q11a4 q20a3
: Thanks!!!

h******s
发帖数: 3420
9
我也以为是这样,后来发现是colume 不是line
用array? Set copy 的时候

【在 A*******s 的大作中提到】
: since it's not alphabetical ordering, you may need to extract substrings
: containing only letters or numbers and then order those substrings
: sequentially.

A*******s
发帖数: 3942
10
what do u mean?
u need to first sort those column names (read from proc contents' output or
vname functions in data step, or dictionary tables whatever), and pass their
values into macro variables.

【在 h******s 的大作中提到】
: 我也以为是这样,后来发现是colume 不是line
: 用array? Set copy 的时候

h******s
发帖数: 3420
11
Nice

or
their

【在 A*******s 的大作中提到】
: what do u mean?
: u need to first sort those column names (read from proc contents' output or
: vname functions in data step, or dictionary tables whatever), and pass their
: values into macro variables.

1 (共1页)
进入Statistics版参与讨论
相关主题
排序的问题,请问高手用SAS怎么做?问个sas编程的题
如何把取值为1的column列出来?urgent help using sas or R for data management
急问一个SAS 的常见问题一个关于macro的问题,多谢。
急问大家一个问题,关于F test 和T test关系的[SAS] number of missing values for character vars
sas questionSAS Macro 问题请教 。。。
请教一个proc transpose的问题is proc tabulate the right procedure to use?
请教 macro variable 和 PROC SQL的问题请问如果用SAS 解决这个问题
SAS里怎么根据VALUE来选择需要OUTPUT的COLUMNS求问 sas _c_ 什么意思
相关话题的讨论汇总
话题: variables话题: q11a4话题: q10a2话题: q10a1话题: q1a2