<?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 make this kind of diagram with SAS? in SAS Visual Analytics</title>
    <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-can-I-make-this-kind-of-diagram-with-SAS/m-p/911629#M17757</link>
    <description>&lt;P&gt;As you ask within the Visual Analytics theme, I would suggest that you cannot do in VA at least without preparing beforehand the density of the distrubution or kernel function you want to display.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This one should get you started, it's a SAS Studio code solution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pic1.png" style="width: 504px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92554i86DE89240D181F50/image-size/large?v=v2&amp;amp;px=999" role="button" title="pic1.png" alt="pic1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data kms;
do kms=0 to 200000 by 10000;
output;
end;
run;

/* ods graphics on; */
ods output UnivariateStatistics=lvs;
proc kde data=AS.COST_MATRIX;
where orig='global'; 
format Fecha_Aceptacion year.;
by Cobertura_Elemento;
freq invoice_acum;
univar kms / percentiles unistats  ;
score data=kms out=kms_X;
run;

ods graphics on;
proc sgpanel data=kms_x;
panelby Cobertura_Elemento / rows=3;
series x=value y=density / smoothconnect ;
band x=value lower=0  upper=density / fill  group=Cobertura_Elemento;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jan 2024 09:12:09 GMT</pubDate>
    <dc:creator>acordes</dc:creator>
    <dc:date>2024-01-16T09:12:09Z</dc:date>
    <item>
      <title>How can I make this kind of diagram with SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-can-I-make-this-kind-of-diagram-with-SAS/m-p/911615#M17755</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiki12_0-1705391814505.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92552iCDF4DCD6248F2AF9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiki12_0-1705391814505.png" alt="kiki12_0-1705391814505.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2024 07:57:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-can-I-make-this-kind-of-diagram-with-SAS/m-p/911615#M17755</guid>
      <dc:creator>kiki12</dc:creator>
      <dc:date>2024-01-16T07:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make this kind of diagram with SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-can-I-make-this-kind-of-diagram-with-SAS/m-p/911625#M17756</link>
      <description>&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2020/10/26/do-low-mortgage-rates-bring-you-joyplots/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2020/10/26/do-low-mortgage-rates-bring-you-joyplots/&lt;/A&gt;</description>
      <pubDate>Tue, 16 Jan 2024 08:49:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-can-I-make-this-kind-of-diagram-with-SAS/m-p/911625#M17756</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-01-16T08:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: How can I make this kind of diagram with SAS?</title>
      <link>https://communities.sas.com/t5/SAS-Visual-Analytics/How-can-I-make-this-kind-of-diagram-with-SAS/m-p/911629#M17757</link>
      <description>&lt;P&gt;As you ask within the Visual Analytics theme, I would suggest that you cannot do in VA at least without preparing beforehand the density of the distrubution or kernel function you want to display.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This one should get you started, it's a SAS Studio code solution.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pic1.png" style="width: 504px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/92554i86DE89240D181F50/image-size/large?v=v2&amp;amp;px=999" role="button" title="pic1.png" alt="pic1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data kms;
do kms=0 to 200000 by 10000;
output;
end;
run;

/* ods graphics on; */
ods output UnivariateStatistics=lvs;
proc kde data=AS.COST_MATRIX;
where orig='global'; 
format Fecha_Aceptacion year.;
by Cobertura_Elemento;
freq invoice_acum;
univar kms / percentiles unistats  ;
score data=kms out=kms_X;
run;

ods graphics on;
proc sgpanel data=kms_x;
panelby Cobertura_Elemento / rows=3;
series x=value y=density / smoothconnect ;
band x=value lower=0  upper=density / fill  group=Cobertura_Elemento;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2024 09:12:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Visual-Analytics/How-can-I-make-this-kind-of-diagram-with-SAS/m-p/911629#M17757</guid>
      <dc:creator>acordes</dc:creator>
      <dc:date>2024-01-16T09:12:09Z</dc:date>
    </item>
  </channel>
</rss>

