SAS中文论坛

标题: 关于结果输出问题 [打印本页]

作者: shiyiming    时间: 2004-12-3 10:01
标题: 关于结果输出问题
我在用了freq过程后,简单写出如下:

proc freq data=...;
    var .../chisq;
run;

在output中得到一个列连表,但我没办法把它导出去,我想把它作为表格弄到word或者excel里面,接着作些修改。直接粘贴的话都很难看。
如果用output out=dataset的话输出的只是一些统计量,得不到我要得列连表,所以请哪位给我指点一下,先谢谢啦!
作者: shiyiming    时间: 2004-12-5 14:08
标题: re
[color=red:a1fa6]ods html file='c:\crosstab.xls';
ods html select CrossTabFreqs;[/color:a1fa6]
[color=blue:a1fa6]proc freq data=...;
tables x*y;
run; [/color:a1fa6]
[color=red:a1fa6]ods html close;
run;[/color:a1fa6]

c:\crosstab.xls就是你要得列联表。
作者: shiyiming    时间: 2004-12-6 15:15
标题: 搞不定
用上面介绍的方法试了一下,行不通

ods html file='d:\a.xls';
ods html select CrossTabFreqs;
proc freq data=impish.hubeisum;
tables kind*educ;
run;
ods html close;
run;

结果如下:
ERROR:  Read Access Violation In Task ( Submit ]
Exception occurred at (67E8675E)
Task Traceback

69   ods html file='d:\a.xls';
NOTE: Writing HTML Body file: d:\a.xls
ERROR: Generic critical error.

怎么回事呢?
作者: shiyiming    时间: 2004-12-6 20:53
标题: hoho
我想是不是 ODS 一定要用对应的选项,你就直接
改为 ods rtf  'd:\ahuige.rtf'   吧,然后再用word打开。
因为rtf算是WORD文件的类似的文件吧。
rich text file格式的
作者: shiyiming    时间: 2004-12-6 22:26
标题: 传说与DBCS有关
看一下:
<!-- m --><a class="postlink" href="http://support.sas.com/techsup/unotes/SN/004/004927.html">http://support.sas.com/techsup/unotes/S ... 04927.html</a><!-- m -->


rtf应该能解决,但有时候也出问题




欢迎光临 SAS中文论坛 (http://mysas.net/forum/) Powered by Discuz! X3.2