B*****s 发帖数: 492 | 1 哎,收到一个很大的txt file,很多行,很多列,呵呵。问题是有些variable的名字很
长,还是分几行的,每个observation也有至少2行,missing value就不说了,有几个
variable是description性质的,里面的话又有几行,我已经完全晕死过去了,求大牛
指点一二,带包子跪谢!!! |
w***z 发帖数: 28 | 2 give few lines which can represent u data, then we can try. |
r********e 发帖数: 100 | 3 How about using perl or other script to parse out the data that you need for
the sas input? |
p********a 发帖数: 5352 | 4 需要COPY & PASTE至少5行数据吧,这不是一个通用的MACRO能解决的。
我以前发的那个MACRO,是自动读CSV格式的TEXT FILES的
读TEXT FILES,需要知道DELIMITER是什么,MISSING VALUES是什么,字段名是什么,
所以没有DATA不行啊 |
B*****s 发帖数: 492 | 5 thanks for trying to help, highly appreciate it, please see the attachment :
0
【在 w***z 的大作中提到】 : give few lines which can represent u data, then we can try.
|
B*****s 发帖数: 492 | 6 i know nothing about programming //cry ...
for
【在 r********e 的大作中提到】 : How about using perl or other script to parse out the data that you need for : the sas input?
|
B*****s 发帖数: 492 | 7 i just attached the data, would you please help to take a look? thanks a ton!
【在 p********a 的大作中提到】 : 需要COPY & PASTE至少5行数据吧,这不是一个通用的MACRO能解决的。 : 我以前发的那个MACRO,是自动读CSV格式的TEXT FILES的 : 读TEXT FILES,需要知道DELIMITER是什么,MISSING VALUES是什么,字段名是什么, : 所以没有DATA不行啊
|
p********a 发帖数: 5352 | 8 这个DATA完全没有FORMAT,不能直接转化为SAS。
我观察了一下这个DATA,这个数据可能是如此产生的,某人从EXCEL里COPY & PASTE,
直接放到了NOTEPAD。所以你必须先把它转化为EXCEL文件,选择MENU上的DATA-->TEXT
TO COLUMNS才能看看。 |
p********a 发帖数: 5352 | 9 请看附件
这是转成EXCEL后的文件,还是很难转成SAS,你可以告诉你的DATA SOURCE说这个没有
格式的DATA是无法转成SAS的,希望他们提供EXCEL的格式 (我猜原文件肯定是EXCEL格
式的。我以前处理过NASDAQ的数据,和这个很象) |
B*****s 发帖数: 492 | 10 you are exactly right, thanks a bunch!!
btw,数据太大了,没法用excel,这是为什么copy paste to txt的原因。
【在 p********a 的大作中提到】 : 请看附件 : 这是转成EXCEL后的文件,还是很难转成SAS,你可以告诉你的DATA SOURCE说这个没有 : 格式的DATA是无法转成SAS的,希望他们提供EXCEL的格式 (我猜原文件肯定是EXCEL格 : 式的。我以前处理过NASDAQ的数据,和这个很象)
|
r********e 发帖数: 100 | 11 Is it the original file or the one you generated through copy and paste?
The delimited symbol is mixed with missing data in the table.
Therefore, basically it is hard to be parsed out. You might want to retrieve
the certain formatted file from the data resource, such as .tsv or .csv
file with clear delimited boundary.
Hope this will help
:
【在 B*****s 的大作中提到】 : thanks for trying to help, highly appreciate it, please see the attachment : : 0
|
B*****s 发帖数: 492 | 12 thanks, it is too late, //cry...
retrieve
【在 r********e 的大作中提到】 : Is it the original file or the one you generated through copy and paste? : The delimited symbol is mixed with missing data in the table. : Therefore, basically it is hard to be parsed out. You might want to retrieve : the certain formatted file from the data resource, such as .tsv or .csv : file with clear delimited boundary. : Hope this will help : : :
|