由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - SAS 问题,多谢。
相关主题
SAS proc format的问题请教一个SAS问题
Proc SQL 能不能直接读 非 SAS format 的数据,txt , csv 等请教SAS ADV真题里一道题目
sas help, how to manipulating on the format value请教用SAS的一个数据处理的问题
How to use Proc format2013 January 刚考过SAS Adv
请教一个SAS问题SAS 求助: filenames
请教一个SAS codeproc corr with very large data 计算结果有错
SAS format 的问题请教两个关于SAS的问题
[sas] 怎么用自定义format里的值来计算?请教SAS base 123 一题
相关话题的讨论汇总
话题: value话题: format话题: sas话题: proc话题: data
进入Statistics版参与讨论
1 (共1页)
S*********h
发帖数: 61
1
little book里的一段,有点儿问题。程序是如何知道在性别栏里找1,2, 在年龄栏里
找年龄数字的?
PROC FORMAT;
VALUE gender 1 = 'Male'
2 = 'Female';
VALUE agegroup 13 -< 20 = 'Teen'
20 -< 65 = 'Adult'
65 - HIGH = 'Senior';
详细见下面
Example Universe Cars is surveying its customers as to their preferences for
car colors. They
have information about the customer’s age, sex (coded as 1 for male and 2
for female), annual
income, and preferred car color (yellow, gray, blue, or white). Here are the
data:
19 1 14000 Y
45 1 65000 G
72 2 35000 B
31 1 44000 Y
58 2 83000 W
The following program reads the data; creates formats for age, sex, and car
color using the
FORMAT procedure; then prints the data using the new formats:
DATA carsurvey;
INFILE 'c:MyRawDataCars.dat';
INPUT Age Sex Income Color $;
PROC FORMAT;
VALUE gender 1 = 'Male'
2 = 'Female';
VALUE agegroup 13 -< 20 = 'Teen'
20 -< 65 = 'Adult'
65 - HIGH = 'Senior';
VALUE $col 'W' = 'Moon White'
'B' = 'Sky Blue'
'Y' = 'Sunburst Yellow'
'G' = 'Rain Cloud Gray';
b********8
发帖数: 3059
2
唉 sas感觉都快死了
很多都是r或者python
S*********h
发帖数: 61
3

只是学来玩玩

【在 b********8 的大作中提到】
: 唉 sas感觉都快死了
: 很多都是r或者python

a******t
发帖数: 72
4
它不需要知道啊 你只是创建了一个格式,还没使用。如果使用的时候性别不是1/2会报
错的
S*********h
发帖数: 61
5
谢谢,祝好。

【在 a******t 的大作中提到】
: 它不需要知道啊 你只是创建了一个格式,还没使用。如果使用的时候性别不是1/2会报
: 错的

b********1
发帖数: 291
6
sas的所谓格式,是个很好的发明,功能很强大。别的语言好像没有。
S*********h
发帖数: 61
7
S*********h
发帖数: 61
8
little book里的一段,有点儿问题。程序是如何知道在性别栏里找1,2, 在年龄栏里
找年龄数字的?
PROC FORMAT;
VALUE gender 1 = 'Male'
2 = 'Female';
VALUE agegroup 13 -< 20 = 'Teen'
20 -< 65 = 'Adult'
65 - HIGH = 'Senior';
详细见下面
Example Universe Cars is surveying its customers as to their preferences for
car colors. They
have information about the customer’s age, sex (coded as 1 for male and 2
for female), annual
income, and preferred car color (yellow, gray, blue, or white). Here are the
data:
19 1 14000 Y
45 1 65000 G
72 2 35000 B
31 1 44000 Y
58 2 83000 W
The following program reads the data; creates formats for age, sex, and car
color using the
FORMAT procedure; then prints the data using the new formats:
DATA carsurvey;
INFILE 'c:MyRawDataCars.dat';
INPUT Age Sex Income Color $;
PROC FORMAT;
VALUE gender 1 = 'Male'
2 = 'Female';
VALUE agegroup 13 -< 20 = 'Teen'
20 -< 65 = 'Adult'
65 - HIGH = 'Senior';
VALUE $col 'W' = 'Moon White'
'B' = 'Sky Blue'
'Y' = 'Sunburst Yellow'
'G' = 'Rain Cloud Gray';
b********8
发帖数: 3059
9
唉 sas感觉都快死了
很多都是r或者python
S*********h
发帖数: 61
10

只是学来玩玩

【在 b********8 的大作中提到】
: 唉 sas感觉都快死了
: 很多都是r或者python

相关主题
SAS format 的问题请教SAS ADV真题里一道题目
[sas] 怎么用自定义format里的值来计算?请教用SAS的一个数据处理的问题
请教一个SAS问题2013 January 刚考过SAS Adv
进入Statistics版参与讨论
a******t
发帖数: 72
11
它不需要知道啊 你只是创建了一个格式,还没使用。如果使用的时候性别不是1/2会报
错的
S*********h
发帖数: 61
12
谢谢,祝好。

【在 a******t 的大作中提到】
: 它不需要知道啊 你只是创建了一个格式,还没使用。如果使用的时候性别不是1/2会报
: 错的

b********1
发帖数: 291
13
sas的所谓格式,是个很好的发明,功能很强大。别的语言好像没有。
S*********h
发帖数: 61
14
d******9
发帖数: 404
15
Yes,Proc Format is one of the beautiful things in SAS, I love it. It is
quite unique, other analytic tools don't have the similar thing.

【在 b********1 的大作中提到】
: sas的所谓格式,是个很好的发明,功能很强大。别的语言好像没有。
d******9
发帖数: 404
16
Yes,Proc Format is one of the beautiful things in SAS, I love it. It is
quite unique, other analytic tools don't have the similar thing.

【在 b********1 的大作中提到】
: sas的所谓格式,是个很好的发明,功能很强大。别的语言好像没有。
S******y
发帖数: 1123
17
现在还在用SAS的 公司还多吗? 好像在Indeed上搜SAS工作机会,好多都是migration
away from SAS。。。
1 (共1页)
进入Statistics版参与讨论
相关主题
求教SAS问题请教一个SAS问题
sas读入数据时的一个问题请教请教一个SAS code
请教一个SAS 数据读入的问题SAS format 的问题
sas base (70) problem 59 help[sas] 怎么用自定义format里的值来计算?
SAS proc format的问题请教一个SAS问题
Proc SQL 能不能直接读 非 SAS format 的数据,txt , csv 等请教SAS ADV真题里一道题目
sas help, how to manipulating on the format value请教用SAS的一个数据处理的问题
How to use Proc format2013 January 刚考过SAS Adv
相关话题的讨论汇总
话题: value话题: format话题: sas话题: proc话题: data