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,有点头大。
|
|