<?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: side by side BOXPLOT in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585524#M166985</link>
    <description>&lt;P&gt;Hey,&amp;nbsp;&lt;BR /&gt;I wanted 'income class' as title for the new column and I copied exactly the template from the SAS Help Center:&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p03avwj37ggkpkn1mzqzkmwvk1sl.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p03avwj37ggkpkn1mzqzkmwvk1sl.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have no idea, why it didn't work.&lt;/P&gt;</description>
    <pubDate>Mon, 02 Sep 2019 00:58:24 GMT</pubDate>
    <dc:creator>Lacona</dc:creator>
    <dc:date>2019-09-02T00:58:24Z</dc:date>
    <item>
      <title>side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585486#M166964</link>
      <description>&lt;P&gt;Hey,&lt;BR /&gt;&lt;BR /&gt;I'm new to SAS and I try to create side-by-side box plots in SAS university, one for each variable - since days now.&lt;BR /&gt;My dataset "income" looks like this:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 13.35.jpg" style="width: 330px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32159iBFC92CD76345A02A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 13.35.jpg" alt="Bild 01.09.19 um 13.35.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The assignment is: create side by side box plots for the income for income1, income2, and income3 and comment on this plot.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I guess output shall look like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 13.40.jpg" style="width: 228px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32161iAD982944073EEF69/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 13.40.jpg" alt="Bild 01.09.19 um 13.40.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;but instead of alpha beta gamma: income1 income2 income3.&lt;BR /&gt;&lt;BR /&gt;proc sgplot data=income;&lt;BR /&gt;vbox income1/category=income2;&lt;BR /&gt;run;&lt;BR /&gt;gives me not even the desired outcome for one boxplot...&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;After hours and hours of trying I still have no idea how to solve this.&lt;BR /&gt;&lt;BR /&gt;I really hope, you can help me.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 19:34:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585486#M166964</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-01T19:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585490#M166966</link>
      <description>&lt;P&gt;Lacona,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get the boxplot you are looking for, you need to transpose the data first to get 3 columns:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Name, IncomeClass (with values Income1, Income2, and Income3), and the value of the income.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The elegant way to do it is to use PROC TRANSPOSE.&amp;nbsp; However, with this little data, you can just retype the data.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 19:49:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585490#M166966</guid>
      <dc:creator>Doc_Duke</dc:creator>
      <dc:date>2019-09-01T19:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585491#M166967</link>
      <description>&lt;P&gt;Your variable INCOME2 is not a category variable, it is a continuous variable, and so it will not work in PROC SGPLOT as an x-axis category variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instead, you need to re-arrange your data so that you have a category variable to put on the x-axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This PROC TRANSPOSE example does exactly what you want, it creates a category variable that you can use on your x-axis.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p03avwj37ggkpkn1mzqzkmwvk1sl.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank" rel="noopener"&gt;https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p03avwj37ggkpkn1mzqzkmwvk1sl.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 20:05:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585491#M166967</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-01T20:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585494#M166969</link>
      <description>&lt;P&gt;Just to be sure: after proc transpose my dataset should look like this?&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 15.33.jpg" style="width: 257px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32162i01789D269E2E5564/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 15.33.jpg" alt="Bild 01.09.19 um 15.33.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 20:34:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585494#M166969</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-01T20:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585497#M166970</link>
      <description>&lt;P&gt;proc transfer doesn't work:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 15.54.jpg" style="width: 267px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32163iE881B1B2D010869F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 15.54.jpg" alt="Bild 01.09.19 um 15.54.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I get this pop-up saying "the chart "WORK.DATA4" can't be opened, because it doesn't contain columns."&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 15.57.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32164i405C34A11ED65C45/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 15.57.jpg" alt="Bild 01.09.19 um 15.57.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Simple transpose worked:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 16.18 (1).jpg" style="width: 242px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32165iE45936CC820D3365/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 16.18 (1).jpg" alt="Bild 01.09.19 um 16.18 (1).jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 16.18.jpg" style="width: 394px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32166i8F265C6E57B2539E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 16.18.jpg" alt="Bild 01.09.19 um 16.18.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Boxplot doesn't work as wished either:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 16.28.jpg" style="width: 275px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32167iD7475FFED6796A80/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 16.28.jpg" alt="Bild 01.09.19 um 16.28.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 16.27 (1).jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32168i76B579C9C734CA36/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 16.27 (1).jpg" alt="Bild 01.09.19 um 16.27 (1).jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm so sorry that I can't run it, but I just started working with SAS last week.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 21:29:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585497#M166970</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-01T21:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585504#M166971</link>
      <description>&lt;P&gt;You need to use the OUT= option on PROC TRANSPOSE, as shown in the example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then you should be able to run PROC SGPLOT on the data set created by PROC TRANSPOSE.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that doesn't work, show us the entire SAS log (not just the errors) including PROC TRANSPOSE and PROC SGPLOT as text (not as a screen capture) by clicking on the {i} icon and pasting the log into the window that appears. This preserves the formatting of the log and makes it more readable. Do not provide the log via any other method.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 21:45:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585504#M166971</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-01T21:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585507#M166972</link>
      <description>&lt;P&gt;Next try - didn't work:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 16.48.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32170iB71C8D6DB384E288/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 16.48.jpg" alt="Bild 01.09.19 um 16.48.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bild 01.09.19 um 16.47.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32169i0D2889102089237C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 16.47.jpg" alt="Bild 01.09.19 um 16.47.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sigh.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 21:50:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585507#M166972</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-01T21:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585508#M166973</link>
      <description>&lt;PRE&gt;FILENAME REFFILE '/folders/myfolders/LAB/Income.csv';

PROC IMPORT DATAFILE=REFFILE
	DBMS=CSV
	OUT=WORK.Income;
	GETNAMES=YES;
RUN;

PROC CONTENTS DATA=WORK.income; RUN;

proc print data=income;&lt;BR /&gt;run;
run;

proc transpose data=income out=boxplot (rename=(col1=income class));
var _income1 _income2 _income3;
by name;
run;&lt;/PRE&gt;&lt;P&gt;Thank you for the hint with the I-icon! It is ways easier.&lt;BR /&gt;This code gives me ERROR 79-322: expecting a =.&lt;BR /&gt;It is not possible to generate a transposed data set.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 22:10:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585508#M166973</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-01T22:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585512#M166976</link>
      <description>&lt;P&gt;But this is not a LOG, this is your actual code. We need to see the LOG by pasting it into the {i} icon window. And you don't show the PROC SGPLOT, we need to see the LOG of that part as well.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 23:02:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585512#M166976</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-09-01T23:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585514#M166978</link>
      <description>&lt;PRE&gt;1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 72         
 73         proc transpose data=income out=boxplot (rename=(col1=income class));
                                                                             _
                                                                             79
 ERROR 79-322: Expecting a =.
 74         var _income1-_income3;
 75         by name;
 76         run;
 
 NOTE: The SAS System stopped processing this step because of errors.
 WARNING: The data set WORK.BOXPLOT may be incomplete.  When this step was stopped there were 0 observations and 0 variables.
 WARNING: Datei WORK.BOXPLOT wurde nicht ersetzt, da da dieser Schritt angehalten wurde.
 NOTE:  Verwendet wurde: PROZEDUR TRANSPOSE - (Gesamtverarbeitungszeit):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 77         
 78         
 79         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 91         &lt;/PRE&gt;&lt;P&gt;Oh! Sure! This is the log I got.&lt;BR /&gt;There is no sgplot to show, because the transpose didn't run?!&lt;BR /&gt;Without proper transpose no proc sgplot?&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your help!!!&lt;/P&gt;</description>
      <pubDate>Sun, 01 Sep 2019 23:11:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585514#M166978</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-01T23:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585520#M166982</link>
      <description>&lt;P&gt;Hi;&lt;/P&gt;
&lt;P&gt;What is the purpose of CLASS in the RENAME= option? Why is the variable there. The RENAME= option expects pairs of variables...&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="courier new,courier"&gt;(rename=(&lt;FONT color="#FF00FF"&gt;oldname=newname&lt;/FONT&gt; &lt;FONT color="#0000FF"&gt;old2=new2&lt;/FONT&gt; &lt;FONT color="#339966"&gt;old3=new3&lt;/FONT&gt;))&lt;/FONT&gt; &lt;/STRONG&gt;... your code does not follow that syntax rule.&lt;BR /&gt;Cynthia&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2019 00:45:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585520#M166982</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-09-02T00:45:53Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585523#M166984</link>
      <description>&lt;P&gt;HEUREKA!!!&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="Bild 01.09.19 um 19.48 (1).jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32171i704EF5F2BCC2F9C5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 01.09.19 um 19.48 (1).jpg" alt="Bild 01.09.19 um 19.48 (1).jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;solution:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;FILENAME REFFILE '/folders/myfolders/LAB/Income.csv';

PROC IMPORT DATAFILE=REFFILE
	DBMS=CSV
	OUT=WORK.IMPORT1;
	GETNAMES=YES;
RUN;

PROC CONTENTS DATA=WORK.IMPORT1; RUN;

proc sort data=import1;
by name;
run;

proc transpose data=import1 out=boxplot;
var income1 income2 income3;
by name;
run;

proc sgplot data=boxplot;
vbox col1/category=_name_;
run;&lt;/PRE&gt;&lt;P&gt;It is necessary to proc sort before proc transpose can be run.&amp;nbsp;&lt;BR /&gt;out=boxplot (rename=(col1=income class)); was not accepted and caused an error. I coudn't figure out, why...&lt;BR /&gt;&lt;BR /&gt;Thank you so so so much, all! I am soooo happy right now!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2019 00:53:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585523#M166984</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-02T00:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585524#M166985</link>
      <description>&lt;P&gt;Hey,&amp;nbsp;&lt;BR /&gt;I wanted 'income class' as title for the new column and I copied exactly the template from the SAS Help Center:&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p03avwj37ggkpkn1mzqzkmwvk1sl.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_blank"&gt;https://documentation.sas.com/?docsetId=proc&amp;amp;docsetTarget=p03avwj37ggkpkn1mzqzkmwvk1sl.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have no idea, why it didn't work.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2019 00:58:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585524#M166985</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-02T00:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585619#M167042</link>
      <description>Hi: "income class" as a variable name is not allowed. you can have income_class as the name and then "Income Class" as the label. But a variable name cannot contain spaces except under very special settings and most of the time, having variable names with spaces turns out to be problematic. Much better to call it something like income_class and then assign a label in a LABEL statement:&lt;BR /&gt;label income_class='Income Class';&lt;BR /&gt;&lt;BR /&gt;Cynthia</description>
      <pubDate>Mon, 02 Sep 2019 14:22:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585619#M167042</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2019-09-02T14:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: side by side BOXPLOT</title>
      <link>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585634#M167049</link>
      <description>&lt;P&gt;Thank you! It worked out perfectly fine with income_class.&lt;BR /&gt;Now I'm trying to have more values shown on the y-axis.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2019 15:49:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/side-by-side-BOXPLOT/m-p/585634#M167049</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-02T15:49:36Z</dc:date>
    </item>
  </channel>
</rss>

