标题: 从EXCEL导入的数据难以处理啊! [打印本页] 作者: shiyiming 时间: 2004-4-8 19:45 标题: 从EXCEL导入的数据难以处理啊! 我把EXCEL的两列数据保存为TXT
打开TXT文件把里面的数据拷到CARDS下面
结果难以运行啊,丢呆在那不动了
LOG窗的提示是:
warning:computing exact p-values for this problem may requre much time and memory. press the sysytem interrupt key to terminate exact computation.
是什么问题啊?
是不是格式什么的问题啊?
应该怎么办啊?
帮帮我啊
万分感谢!作者: shiyiming 时间: 2004-4-8 20:13 标题: Import data 试试 Import data 试试!作者: shiyiming 时间: 2004-4-8 20:17 标题: Re: Import data 试试 [quote="collen":06c5d]Import data 试试![/quote:06c5d]
impot进那个数据后保存为一个以SAS作为后缀的文件
然后把这个文件打开
在INPUT前面输入这段程序
是不是这样用的啊?
这样也不行啊
郁闷
我装的是8。2作者: shiyiming 时间: 2004-4-8 20:40 标题: Re: Import data 试试 [quote="tosalut":e12e3][quote="collen":e12e3]Import data 试试![/quote:e12e3]
data temp;
set 指定的member 名;
*** /* 程序*/
run;作者: shiyiming 时间: 2004-4-9 09:11 标题: Re: 求救:从EXCEL导入的数据难以处理啊! [quote="tosalut":70ac0]
LOG窗的提示是:
warning:computing exact p-values for this problem may requre much time and memory. press the sysytem interrupt key to terminate exact computation.[/quote:70ac0]
希望有所帮助。作者: shiyiming 时间: 2004-4-9 09:37
导入excel文件的建议:
我通常都是把excel file保存成为.csv的文件,这样excel就变成了用‘,’分割的文件了,然后再用import function或者sas的code直接读入数据。不需要copy,paste的。作者: shiyiming 时间: 2004-4-9 10:03
我同意zibao的看法,应该与import无关,可能你的样本太大,导致计算时间过长。
但是楼上的几位import的方法的确都很好很正确,尤其是yuyuei的方法也是偶最常用的!作者: shiyiming 时间: 2004-4-10 19:21
是的,你的数据是不是很大阿?
sas 的功能虽然很强,但他的能力也是有个限度的。单要处理的数据超过一个限度时,就有可能出现这种情况。这个限度,也包括处理数据时的精度要求。你的数据量是不是行大,数据是不是有很多位小数?作者: shiyiming 时间: 2004-4-11 06:01
it is not the business of import data. according to the hint of log, you should have more memory. the reson of this situation is that your programm is wrong or you have large data frame. the best way is to change another way to do it.作者: shiyiming 时间: 2004-4-11 20:36
我的同事也碰到过类似的问题,很简单的一个excel数据文件,就是不能在sas中用import转换成为sas数据集。但是在我的电脑上就很容易的转换成功了。一直不知道是什么原因。作者: shiyiming 时间: 2004-4-14 22:36
我 以 前 也 有 类 似 的 情 况 。
我 的 经 验 是 : 看 你 的 Excel文 件 是 如 何 来 的 。 如 果 文 件 是 从 OLAP or Data Warehouse中 来 的 , 在 excel文 件 输 出 时(给 end urser) , Vendor会 强 制 一 些 format (为 了 美 感 ? )。 这 些 format在 Excel中 很 难 修 改 。 在 SAS import excel file 时 就 会 有 问 题 。
我 曾 问 过 SAS tech support, 他 们 的 回 答 是 问 Vendor或 是 Microsoft 的 support。 他 们 只 读 ‘标 准 ’的 excel 文 件 。