<?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: how to add options : type = kernel   nbins=     and   binwith=   ? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/how-to-add-options-type-kernel-nbins-and-binwith/m-p/639131#M19744</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/268447"&gt;@tianerhu&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TYPE= is an option of the &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n18r9s9vxpuewqn0zeo8p1oekbmn.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;DENSITY statement&lt;/A&gt;.&amp;nbsp;&lt;SPAN&gt;NBINS= and BINWIDTH= are options of the &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n17xrpcduau1f8n1c1nhe477pv18.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;HISTOGRAM statement&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Example 1:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data = sashelp.heart;
histogram systolic / nbins=25;
density systolic / type=kernel;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;Example 2:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data = sashelp.heart;
histogram systolic / binwidth=10;
density systolic / type=kernel(c=5 weight=quadratic);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Of course, with &lt;FONT face="courier new,courier"&gt;type=kernel&lt;/FONT&gt; you would need to change the title.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 11 Apr 2020 09:08:08 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2020-04-11T09:08:08Z</dc:date>
    <item>
      <title>how to add options : type = kernel   nbins=     and   binwith=   ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-to-add-options-type-kernel-nbins-and-binwith/m-p/639080#M19743</link>
      <description>&lt;P&gt;title "Histogram with a Normal Curve Overlaid";&lt;/P&gt;
&lt;P&gt;proc sgplot data = Learn.Blood;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; histogram RBC;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; density RBC;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;where should i add the type = kernel ?&lt;/P&gt;
&lt;P&gt;where should i add the nbins= and binwith= ?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 22:13:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-to-add-options-type-kernel-nbins-and-binwith/m-p/639080#M19743</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-10T22:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to add options : type = kernel   nbins=     and   binwith=   ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-to-add-options-type-kernel-nbins-and-binwith/m-p/639131#M19744</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/268447"&gt;@tianerhu&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TYPE= is an option of the &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n18r9s9vxpuewqn0zeo8p1oekbmn.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;DENSITY statement&lt;/A&gt;.&amp;nbsp;&lt;SPAN&gt;NBINS= and BINWIDTH= are options of the &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetVersion=9.4&amp;amp;docsetTarget=n17xrpcduau1f8n1c1nhe477pv18.htm&amp;amp;locale=en" target="_blank" rel="noopener"&gt;HISTOGRAM statement&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Example 1:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data = sashelp.heart;
histogram systolic / nbins=25;
density systolic / type=kernel;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;Example 2:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data = sashelp.heart;
histogram systolic / binwidth=10;
density systolic / type=kernel(c=5 weight=quadratic);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Of course, with &lt;FONT face="courier new,courier"&gt;type=kernel&lt;/FONT&gt; you would need to change the title.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Apr 2020 09:08:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-to-add-options-type-kernel-nbins-and-binwith/m-p/639131#M19744</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2020-04-11T09:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to add options : type = kernel   nbins=     and   binwith=   ?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/how-to-add-options-type-kernel-nbins-and-binwith/m-p/641034#M19764</link>
      <description>Thank you .</description>
      <pubDate>Sun, 19 Apr 2020 02:26:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/how-to-add-options-type-kernel-nbins-and-binwith/m-p/641034#M19764</guid>
      <dc:creator>tianerhu</dc:creator>
      <dc:date>2020-04-19T02:26:57Z</dc:date>
    </item>
  </channel>
</rss>

