Prev: Weights in Proc MI
Next: Genmod error in 9.2
From: Arthur Tabachneck on 13 Dec 2009 13:12 Nuno, I think it's a bug that SAS never fixed (at least for 9.1). It will work if you change two of your statements: Change: ods html body="d:\results.html"; to ods html3 body="d:\results.html"; and Change: ods html close; to ods html3 close; HTH, Art --------- On Sun, 13 Dec 2009 11:48:37 -0000, Nuno Soares <ndsoares(a)GMAIL.COM> wrote: >Hi everyone, > >I'm having a problem with SAS 9.1.3 ODS system which I can't figure out. I'm >running the following set of proc means, the results of which I want to save >in a results.html file: > >ods html body="d:\results.html"; > >proc means data=t0 n mean t probt; >var x1 x2 x3; >run; > >proc means data=t1 n mean t probt; >var x1 x2 x3; >run; > >proc means data=t2 n mean t probt; >var x1 x2 x3; >run; > >ods html close; > > >Now, I can see the results in the output viewer but when I get to the html >file I only have the headings with no results, like this: > >The MEANS Procedure > >Variable N Mean t Value Pr > |t| > > >I've run the same code in another computer and it produces the html file as >it should (or at least I was hoping for...), ie with the results, but in my >main machine this behaviour persists... Any idea about this? I think this is >a matter of a SAS configuration, but I can't seem to figure it out... Any >way of copying the configs from the system that is correctly producing the >results into my main system? > >Thank you.
|
Pages: 1 Prev: Weights in Proc MI Next: Genmod error in 9.2 |