<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Proc Univariate Histogram - no graphical output anywhere in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660042#M78908</link>
    <description>&lt;P&gt;Don't forget to enable ODS graphics before your PROC UNIVARIATE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 16 Jun 2020 14:02:22 GMT</pubDate>
    <dc:creator>ChrisHemedinger</dc:creator>
    <dc:date>2020-06-16T14:02:22Z</dc:date>
    <item>
      <title>Proc Univariate Histogram - no graphical output anywhere</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660032#M78906</link>
      <description>&lt;P&gt;Hello, I am seeking a simple histogram using Proc Univariate. The code below produces the stats in the output window but no graph anywhere (output window, disk, etc.). I've tried a few version of the ODS LISTING idea, but no luck. Grateful for any ideas. Thank you!&amp;nbsp; Rick&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data binom;
	input var1;
	cards;
	1
	2
	2
	3
	3
	3
	4
	4
	4
	4
	5
	5
	5
	6
	6
	7
	;

ods listing html;
*ods listing gpath="c:\temp";

proc univariate data=binom;
	histogram var1 / normal;
var var1;


run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Jun 2020 13:38:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660032#M78906</guid>
      <dc:creator>rfrancis</dc:creator>
      <dc:date>2020-06-16T13:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Univariate Histogram - no graphical output anywhere</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660037#M78907</link>
      <description>&lt;P&gt;Do you get an error in the log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTML (and histograms) cannot be written to the LISTING destination.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You want to use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;with possibly other options in the ods html statement.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 13:48:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660037#M78907</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-06-16T13:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Univariate Histogram - no graphical output anywhere</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660042#M78908</link>
      <description>&lt;P&gt;Don't forget to enable ODS graphics before your PROC UNIVARIATE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 16 Jun 2020 14:02:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660042#M78908</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2020-06-16T14:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Univariate Histogram - no graphical output anywhere</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660049#M78909</link>
      <description>&lt;P&gt;Thank you! ODS HTML does the trick.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 14:24:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660049#M78909</guid>
      <dc:creator>rfrancis</dc:creator>
      <dc:date>2020-06-16T14:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Univariate Histogram - no graphical output anywhere</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660050#M78910</link>
      <description>&lt;P&gt;Thank you!&amp;nbsp; ODS GRAPHICS ON is helpful!&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jun 2020 14:26:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Univariate-Histogram-no-graphical-output-anywhere/m-p/660050#M78910</guid>
      <dc:creator>rfrancis</dc:creator>
      <dc:date>2020-06-16T14:26:08Z</dc:date>
    </item>
  </channel>
</rss>

