由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 请问我们平时在SAS里头那种data叫什么format的data呀?
相关主题
一个很全SAS Interview Q. List [ZT] (转载)SAS format 的问题
help with reading a strange csv file into SASsas base 70 第 20题
问一个SAS format的问题,看似简单大侠们:How to solve this EXPORT in SAS
包子问,SAS里data long to wide formatreading data into sas 问题
大数据如何在R和sas之间转换help-SAS 读data 问题
请教两个关于SAS的问题问一个如何sas里做这个问题
sas questionSAS问题请教
A SAS infile problemHow to delete a list of variable at one time in SAS?
相关话题的讨论汇总
话题: data话题: sas话题: format话题: v2话题: v1
进入Statistics版参与讨论
1 (共1页)
s*****a
发帖数: 2735
1
那种最上面一行是variable名字,下面一个column一个column对应是数据的data,算是
什么format的?
还有那种电信传输的txt数据,一个txt file:
v1,78,878,89904,v2,889,789,900;
这样的又算是什么格式的数据呢?谢谢。
P****D
发帖数: 11146
2
The txt you mentioned: comma-delimited file.
SAS: the extension name is SAS7bdat.
s*****a
发帖数: 2735
3
在SAS也好,在excel也好,还有R也好,如下的data比较容易输入,也是大家习惯使用
的。
variable name在第一行,然后每个column可能有'tab',’,',或者‘;' 来分开,换
row的时候换行’\n'。比如:

v1 v2 v3
1 4 5
2 3 3
3 7 8
4 1 9

or

v1, v2, v3
1, 4, 5
2, 3, 3
3, 7, 8
4, 1, 9

我想问的不是后缀名,而是这样的data叫做什么data。
因为通信方面还有如下的data,不带'\n',
"datainpu,1,v1,1,2,3,4,v2,4,3,7,1,v3,5,3,8,9..."
还有机器报告生成的:

report, 1
operater, 1234
v1
1 2 3 4 5 6 7 8
v2
34 56 67 ....
"
我想问的是这些都叫啥数据类型?

【在 P****D 的大作中提到】
: The txt you mentioned: comma-delimited file.
: SAS: the extension name is SAS7bdat.

P****D
发帖数: 11146
4
This is called vertical data structure. A PIA to deal with.

【在 s*****a 的大作中提到】
: 在SAS也好,在excel也好,还有R也好,如下的data比较容易输入,也是大家习惯使用
: 的。
: variable name在第一行,然后每个column可能有'tab',’,',或者‘;' 来分开,换
: row的时候换行’\n'。比如:
: “
: v1 v2 v3
: 1 4 5
: 2 3 3
: 3 7 8
: 4 1 9

s*****a
发帖数: 2735
5
谢谢你的回复,有没有更加详细一点的描述或者link?
我能做很多种不同data的自动录入,但是都不知道怎么去描述。
现在在改resume,有点头大。

【在 P****D 的大作中提到】
: This is called vertical data structure. A PIA to deal with.
P****D
发帖数: 11146
6
I don't think you need/should put too many details in your resume, unless
this is your key qualification and not very many other people can do it.
Just say you developed a software to import raw data with various structures
, as well as clean, reorganize, and export into xxx format (if that's what
you did).

【在 s*****a 的大作中提到】
: 谢谢你的回复,有没有更加详细一点的描述或者link?
: 我能做很多种不同data的自动录入,但是都不知道怎么去描述。
: 现在在改resume,有点头大。

1 (共1页)
进入Statistics版参与讨论
相关主题
How to delete a list of variable at one time in SAS?大数据如何在R和sas之间转换
请问如何改变 data set's column 位置. 比如name, id 换成id, name.请教两个关于SAS的问题
SAS将某个variable的value由数字替换为字符?sas question
SAS问题请教:Numeric Variable Length的设定A SAS infile problem
一个很全SAS Interview Q. List [ZT] (转载)SAS format 的问题
help with reading a strange csv file into SASsas base 70 第 20题
问一个SAS format的问题,看似简单大侠们:How to solve this EXPORT in SAS
包子问,SAS里data long to wide formatreading data into sas 问题
相关话题的讨论汇总
话题: data话题: sas话题: format话题: v2话题: v1