<?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 Suppress graph in proc univariate in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Suppress-graph-in-proc-univariate/m-p/713086#M219932</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi, &amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am trying to output a cumulative distribution of a variable but i am interested in creating the output dataset and not the plot.&amp;nbsp; The following code outputs the dataset exactly like i wanted but it also outputs the graph. How do i suppress&amp;nbsp;the graph?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;BR /&gt;proc univariate data=temp;&lt;BR /&gt;cdf score;&lt;BR /&gt;ods output cdfplot = data_wanted; run;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be appreciated&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jan 2021 14:49:18 GMT</pubDate>
    <dc:creator>Ajaykrishna</dc:creator>
    <dc:date>2021-01-21T14:49:18Z</dc:date>
    <item>
      <title>Suppress graph in proc univariate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppress-graph-in-proc-univariate/m-p/713086#M219932</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi, &amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am trying to output a cumulative distribution of a variable but i am interested in creating the output dataset and not the plot.&amp;nbsp; The following code outputs the dataset exactly like i wanted but it also outputs the graph. How do i suppress&amp;nbsp;the graph?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics on;&lt;BR /&gt;proc univariate data=temp;&lt;BR /&gt;cdf score;&lt;BR /&gt;ods output cdfplot = data_wanted; run;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any help would be appreciated&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 14:49:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppress-graph-in-proc-univariate/m-p/713086#M219932</guid>
      <dc:creator>Ajaykrishna</dc:creator>
      <dc:date>2021-01-21T14:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Suppress graph in proc univariate</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suppress-graph-in-proc-univariate/m-p/713091#M219936</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;
ods exclude cdfplot;
proc univariate data=sashelp.class;
    cdf weight;
    ods output cdfplot = data_wanted; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Jan 2021 15:28:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suppress-graph-in-proc-univariate/m-p/713091#M219936</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-01-21T15:28:15Z</dc:date>
    </item>
  </channel>
</rss>

