Publishing SAS Content to Sharepoint

Had a question on my blog about SAS Web parts that are available for Sharepoint and where to download them or install them from.

While researching the questin (sorry Joseph stil haven’t found them) I found this code in the SAS Paper I referenced:

data sampledata;
do n=1 to 1000;
x=int(ranuni(77777)*7);
y=int(ranuni(77777)*5);
output;
end;
run;

filename out ‘\\mySharePointServer\Shared Documents\ProcFreqExample.html’;

ODS HTML encoding=UTF8 body=out dev=gif;

proc freq data=sampledata;
tables height*weight / chisq;
run;

ODS HTML close;

So effectively you can publish to sharepoint using a simple UNC link.

I know I am going to need this in the future so this blog is a note to self.

  • Share/Bookmark
Leave a comment

0 Comments.

Leave a Reply


[ Ctrl + Enter ]