由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 急问个简单的SAS ODS PDF的问题
相关主题
SAS输出到Excel/pdfRe: 请问SAS如何学起?
SAS help...[合集] Can we calculate log likelihood ratio using SAS???
SAS call symput questionSAS9里面用ODS画survival (K-M plot) 的问题
求助:SAS 画图输出问题.How to format the SAS output?
问个低级的SAS问题求助:SAS data set输出
发包子问一个SAS问题SAS急问:怎样在PROC REPORT 的TITLE 部分加粗字体(BOLD)?不用ODS怎样做?
问个SAS题目,ods rtf startpage=never does not work anymore in SAS9.2?
SAS ODS PDF 的问题SAS使用到什么水平才算是高手?
相关话题的讨论汇总
话题: ods话题: pdf话题: file话题: put话题: null
进入Statistics版参与讨论
1 (共1页)
g*********e
发帖数: 458
1
我有一段小得不能再小的简单code,说什么也不对。生成的PDF文件不能打开,
系统报错说: Because it is either not a supported file type or the file has
been damaged.
程序就这么简单就不对:
data _null_;
file "C:\a.pdf";
put 'Hello World!';
run;
t*********l
发帖数: 778
2
我也没试出来..我用的这个
ods pdf file='';
ods listing close;
data _null_;
put'hello';
run;
ods pdf close;
ods listing;
感觉不应该用 put 和data _null_
w*******n
发帖数: 469
3
ods pdf file="C:\a.pdf";
data _null_;
file print;
put 'Hello World!';
run;
ods pdf close;
t*********l
发帖数: 778
4
wow, i see.
g*********e
发帖数: 458
5
Thank you very much!
This is great.

【在 w*******n 的大作中提到】
: ods pdf file="C:\a.pdf";
: data _null_;
: file print;
: put 'Hello World!';
: run;
: ods pdf close;

g*********e
发帖数: 458
6
wwwscopin(and all IDs interested):
Thank you very much for your help!
But still I have some questions related.
I put the code into macro then it doesn't work again. The error report doesn
't give much info.
if you are free, please give a hand. Thank you.
%macro test;
ods pdf;
data _null_ file="C:\a.pdf";
file print;
%put 'Testing';
run;
ods pdf close;
%mend test;
%test;

【在 w*******n 的大作中提到】
: ods pdf file="C:\a.pdf";
: data _null_;
: file print;
: put 'Hello World!';
: run;
: ods pdf close;

1 (共1页)
进入Statistics版参与讨论
相关主题
SAS使用到什么水平才算是高手?问个低级的SAS问题
请教SAS ODS to Excel发包子问一个SAS问题
[新手求救]怎样输出logistic regression的结果?问个SAS题目,
[提问]如何用SAS在同一个ExcelBook里create several spreadsheets?SAS ODS PDF 的问题
SAS输出到Excel/pdfRe: 请问SAS如何学起?
SAS help...[合集] Can we calculate log likelihood ratio using SAS???
SAS call symput questionSAS9里面用ODS画survival (K-M plot) 的问题
求助:SAS 画图输出问题.How to format the SAS output?
相关话题的讨论汇总
话题: ods话题: pdf话题: file话题: put话题: null