<?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 can i color proc univariate histogram by variable keskkond?or use panels?(sas studio) in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-color-proc-univariate-histogram-by-variable-keskkond/m-p/897712#M354785</link>
    <description>&lt;P&gt;Go here: &lt;A href="https://blogs.sas.com/content/?s=histogram+color" target="_blank"&gt;https://blogs.sas.com/content/?s=histogram+color&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will find (among others) this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Histogram with Gradient Color &lt;BR /&gt;By Sanjay Matange on Graphically Speaking November 30, 2015&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2015/11/30/7180/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2015/11/30/7180/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR,&lt;BR /&gt;Koen&lt;/P&gt;</description>
    <pubDate>Sun, 08 Oct 2023 09:24:32 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2023-10-08T09:24:32Z</dc:date>
    <item>
      <title>how can i color proc univariate histogram by variable keskkond?or use panels?(sas studio)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-color-proc-univariate-histogram-by-variable-keskkond/m-p/897711#M354784</link>
      <description>&lt;P&gt;this is my code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;proc univariate data=katse.andmed2 noprint;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;histogram lugemiskiirus /midpoints=(0 to 6 by 0.5);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp;inset N="maht" MIN="miinimum" MAX="maksimum" Median ="mediaan" MEAN = "keskmine" MODE = "mood" STD = "standardhälve" (8.3)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; / position = ne;&lt;/DIV&gt;&lt;DIV&gt;run;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I have tried and seached about it but nothing works.&lt;/DIV&gt;</description>
      <pubDate>Sun, 08 Oct 2023 08:39:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-color-proc-univariate-histogram-by-variable-keskkond/m-p/897711#M354784</guid>
      <dc:creator>StellaPals</dc:creator>
      <dc:date>2023-10-08T08:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: how can i color proc univariate histogram by variable keskkond?or use panels?(sas studio)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-color-proc-univariate-histogram-by-variable-keskkond/m-p/897712#M354785</link>
      <description>&lt;P&gt;Go here: &lt;A href="https://blogs.sas.com/content/?s=histogram+color" target="_blank"&gt;https://blogs.sas.com/content/?s=histogram+color&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will find (among others) this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Histogram with Gradient Color &lt;BR /&gt;By Sanjay Matange on Graphically Speaking November 30, 2015&lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2015/11/30/7180/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2015/11/30/7180/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR,&lt;BR /&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sun, 08 Oct 2023 09:24:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-color-proc-univariate-histogram-by-variable-keskkond/m-p/897712#M354785</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-10-08T09:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: how can i color proc univariate histogram by variable keskkond?or use panels?(sas studio)</title>
      <link>https://communities.sas.com/t5/SAS-Programming/how-can-i-color-proc-univariate-histogram-by-variable-keskkond/m-p/897797#M354837</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*
Yes.Switch into PROC SGPANEL to manipulate more .
*/
data have;
 set sashelp.heart(obs=1000);
 keep bp_status weight;
run;
proc sort data=have;by bp_status;run;
proc summary data=have ;
by bp_status;
var weight;
output out=summary n=n min=min max=max median=median mean=mean mode=mode std=std;
run;
data want;
 inb=0;
 merge have summary(in=inb);
 by bp_status;
 if not inb then call missing(n,min,max,median,mean,mode,std);
 label n="maht" min="miinimum" max="maksimum" Median ="mediaan" MEAN = "keskmine" MODE = "mood" STD = "standardhälve";
run;
proc sgpanel data=want noautolegend;
panelby bp_status/layout=rowlattice novarname onepanel ROWHEADERPOS=left;
histogram weight/group=bp_status;
inset n min  max  Median MEAN   MODE  STD /border position=ne separator='=' ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1696851496321.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/88720i29C26FB1D7D7CAFC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1696851496321.png" alt="Ksharp_0-1696851496321.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 11:38:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/how-can-i-color-proc-univariate-histogram-by-variable-keskkond/m-p/897797#M354837</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2023-10-09T11:38:27Z</dc:date>
    </item>
  </channel>
</rss>

