如何使用 SAS 代码将 SAS EG table 导出到 HTML 文件

How to export SAS EG table to HTML file using SAS code

我正在尝试使用 ODS HTML 将 SAS table 导出到本地 HTML 文件。 我该怎么做?

data=WORK.TABLE_NAME;
ods html file="/user_data/maexport/monitoring t-1.html";
ods html close;

上面的代码保存了 html 文件,但是它是空的。

该文件是空的,因为您没有运行在打开文件的命令和关闭文件的命令之间向文件写入内容的任何代码。

ods html file="/user_data/maexport/monitoring t-1.html";
proc print data=WORK.TABLE_NAME;
run;
ods html close;