<?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 Boxplot: how to get rid of the line &amp;quot;name of former variable&amp;quot; under the graph in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585677#M167076</link>
    <description>&lt;P&gt;Hey all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Under my boxplots is a line saying "name of the former variable" (= Name der früheren Variable) and the following actual names (DomBox WorldBox OpWeek) are not exactly under the boxplots and the color of the letters is not matching the color of the boxplots, instead there are odd little colored squares.&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 02.09.19 um 20.22.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32174iF0E9E6B7F049D2E6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 02.09.19 um 20.22.jpg" alt="Bild 02.09.19 um 20.22.jpg" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;data box_gross;
set movie (drop=reldate prodbud);
run;

proc sort data=box_gross;
by title;
run;

proc transpose data=box_gross out=boxplot (rename=(col1=Gross _name_=Box));
var dombox opweek worldbox;
by title;
run;

proc sgplot data=boxplot;
vbox gross/group=box;
xaxis display=(nolabel);
yaxis values=(0 to 1.6E9 by 5E7) grid;
title HEUREKA;
run;&lt;/PRE&gt;&lt;P&gt;I couldn't find anything helpful in SAS help center or here in the posts.&lt;BR /&gt;Maybe someone could help me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Sep 2019 01:26:34 GMT</pubDate>
    <dc:creator>Lacona</dc:creator>
    <dc:date>2019-09-03T01:26:34Z</dc:date>
    <item>
      <title>Boxplot: how to get rid of the line "name of former variable" under the graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585677#M167076</link>
      <description>&lt;P&gt;Hey all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Under my boxplots is a line saying "name of the former variable" (= Name der früheren Variable) and the following actual names (DomBox WorldBox OpWeek) are not exactly under the boxplots and the color of the letters is not matching the color of the boxplots, instead there are odd little colored squares.&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 02.09.19 um 20.22.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32174iF0E9E6B7F049D2E6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 02.09.19 um 20.22.jpg" alt="Bild 02.09.19 um 20.22.jpg" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;data box_gross;
set movie (drop=reldate prodbud);
run;

proc sort data=box_gross;
by title;
run;

proc transpose data=box_gross out=boxplot (rename=(col1=Gross _name_=Box));
var dombox opweek worldbox;
by title;
run;

proc sgplot data=boxplot;
vbox gross/group=box;
xaxis display=(nolabel);
yaxis values=(0 to 1.6E9 by 5E7) grid;
title HEUREKA;
run;&lt;/PRE&gt;&lt;P&gt;I couldn't find anything helpful in SAS help center or here in the posts.&lt;BR /&gt;Maybe someone could help me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 01:26:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585677#M167076</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-03T01:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Boxplot: how to get rid of the line "name of former variable" under the graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585678#M167077</link>
      <description>&lt;P&gt;Have you tried&amp;nbsp;&lt;FONT face="courier new,courier"&gt;keylegend title=&lt;/FONT&gt;&amp;nbsp; ?&lt;/P&gt;
&lt;P&gt;See &lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p0xmbppzx71smbn1203aaif96z86.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 01:54:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585678#M167077</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-09-03T01:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Boxplot: how to get rid of the line "name of former variable" under the graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585681#M167080</link>
      <description>&lt;P&gt;Great! The "name of former variable" is vanished now.&lt;BR /&gt;But unfortunately, the names are not directly unter the boxplots and still have these colored squares.&lt;BR /&gt;How can I fix that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 02:56:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585681#M167080</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-03T02:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: Boxplot: how to get rid of the line "name of former variable" under the graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585683#M167082</link>
      <description>&lt;P&gt;If you want each box labelled in each group, maybe proc sgpanel is better then. See &lt;A href="https://data-flair.training/blogs/sas-boxplot/" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 03:24:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585683#M167082</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-09-03T03:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Boxplot: how to get rid of the line "name of former variable" under the graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585688#M167086</link>
      <description>&lt;P&gt;keylegend and category did it! Thank you!!!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;proc sgplot data=boxplot;
vbox gross/group=box category=box dataskin=pressed;
xaxis display=(nolabel);
yaxis values=(0 to 1.6E9 by 5E7) grid;
keylegend/title="";
title HEUREKA;
run;&lt;/PRE&gt;&lt;P&gt;graph looks now like this:&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 02.09.19 um 22.42 (1).jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32175iF2AF4C5F56763459/image-size/large?v=v2&amp;amp;px=999" role="button" title="Bild 02.09.19 um 22.42 (1).jpg" alt="Bild 02.09.19 um 22.42 (1).jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Almost perfect.&lt;/P&gt;&lt;P&gt;Is there an option to change the order of the xaxis values from alphabetic to something else? I would like to have OpWeek first, then DomBox, then Worldbox.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 03:45:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585688#M167086</guid>
      <dc:creator>Lacona</dc:creator>
      <dc:date>2019-09-03T03:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Boxplot: how to get rid of the line "name of former variable" under the graph</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585694#M167091</link>
      <description>&lt;P&gt;Please try the VALUES= option.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 04:24:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Boxplot-how-to-get-rid-of-the-line-quot-name-of-former-variable/m-p/585694#M167091</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2019-09-03T04:24:17Z</dc:date>
    </item>
  </channel>
</rss>

