<?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: gplot and truncating in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/gplot-and-truncating/m-p/22409#M4917</link>
    <description>Hi:&lt;BR /&gt;
  This Tech Support note explains that the value is truncated to 32 characters:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/00/807.html" target="_blank"&gt;http://support.sas.com/kb/00/807.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  cynthia</description>
    <pubDate>Thu, 23 Apr 2009 17:33:05 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2009-04-23T17:33:05Z</dc:date>
    <item>
      <title>gplot and truncating</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/gplot-and-truncating/m-p/22408#M4916</link>
      <description>Hi there,&lt;BR /&gt;
&lt;BR /&gt;
I'm trying to plot 3 variables:&lt;BR /&gt;
&lt;BR /&gt;
PLOT Observation * Date =assistance&lt;BR /&gt;
&lt;BR /&gt;
The assistance data values are longer than 32 characters and I want them all in my legend.  However, I'm getting the following message in the log:&lt;BR /&gt;
&lt;BR /&gt;
NOTE: Value of IDVAR(Assistance) truncated to 32 characters&lt;BR /&gt;
&lt;BR /&gt;
Is there any way to get around this?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Christy</description>
      <pubDate>Thu, 23 Apr 2009 05:36:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/gplot-and-truncating/m-p/22408#M4916</guid>
      <dc:creator>christyh</dc:creator>
      <dc:date>2009-04-23T05:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: gplot and truncating</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/gplot-and-truncating/m-p/22409#M4917</link>
      <description>Hi:&lt;BR /&gt;
  This Tech Support note explains that the value is truncated to 32 characters:&lt;BR /&gt;
&lt;A href="http://support.sas.com/kb/00/807.html" target="_blank"&gt;http://support.sas.com/kb/00/807.html&lt;/A&gt;&lt;BR /&gt;
 &lt;BR /&gt;
  cynthia</description>
      <pubDate>Thu, 23 Apr 2009 17:33:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/gplot-and-truncating/m-p/22409#M4917</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-04-23T17:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: gplot and truncating</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/gplot-and-truncating/m-p/22410#M4918</link>
      <description>If you are using SAS 9.2, you could try using the SGPLOT procedure.  See attached program.  &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
data longgroupvalues;&lt;BR /&gt;
  set sashelp.cars;&lt;BR /&gt;
  length origin1 $65;&lt;BR /&gt;
  label origin1='Country of Origin';&lt;BR /&gt;
  &lt;BR /&gt;
   select (origin); &lt;BR /&gt;
     when('USA') origin1='United State Of America, Land of the Free and Home of the Brave';&lt;BR /&gt;
     when('Europe') origin1='Europe, The Olde World';&lt;BR /&gt;
     when('Asia') origin1='Mostly East Asia and Pacific Coast Countries';&lt;BR /&gt;
   end;&lt;BR /&gt;
run;&lt;BR /&gt;
/*proc print data=longgroupvalues; run;*/&lt;BR /&gt;
&lt;BR /&gt;
ods html;&lt;BR /&gt;
title 'Fit plot with Long Group Values';&lt;BR /&gt;
proc sgplot data=longgroupvalues;&lt;BR /&gt;
  reg x=horsepower y=mpg_city / group=origin1 degree=2;&lt;BR /&gt;
  xaxis grid;&lt;BR /&gt;
  yaxis grid;&lt;BR /&gt;
  run;&lt;BR /&gt;
ods html close;</description>
      <pubDate>Sun, 26 Apr 2009 00:10:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/gplot-and-truncating/m-p/22410#M4918</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2009-04-26T00:10:56Z</dc:date>
    </item>
  </channel>
</rss>

