<?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: Missing Line on the Dots for few cases - SAS GPLOT in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143478#M5437</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have separate y variable for each category. I've single PCT variable for all the categories.&lt;/P&gt;&lt;P&gt;Please refer to the attached image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="plot1.PNG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/7741_plot1.PNG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Oct 2014 18:05:28 GMT</pubDate>
    <dc:creator>NareshAbburi</dc:creator>
    <dc:date>2014-10-27T18:05:28Z</dc:date>
    <item>
      <title>Missing Line on the Dots for few cases - SAS GPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143474#M5433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm plotting a gplot in SAS 9.3, I'm not sure what mistake am I doing that it is not plotting lines on all the cases of my graph. the line is plotting for only one case.&lt;/P&gt;&lt;P&gt;Please refer to the attached graph.&lt;/P&gt;&lt;P&gt;Please help me to resolve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/10578iC220B3159423B950/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Gplot.PNG" title="Gplot.PNG" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 17:13:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143474#M5433</guid>
      <dc:creator>NareshAbburi</dc:creator>
      <dc:date>2014-10-27T17:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Line on the Dots for few cases - SAS GPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143475#M5434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like you need additional SYMBOL statements with the I=Join option. This will also let you define more interesting markers.&lt;/P&gt;&lt;P&gt;You need one symbol statement for each response category to customize appearance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 17:36:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143475#M5434</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2014-10-27T17:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Line on the Dots for few cases - SAS GPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143476#M5435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you mean by additional symbol options. Could you please provide me some details.&lt;/P&gt;&lt;P&gt;here is my code.&lt;/P&gt;&lt;P&gt;I've already used symbol option with join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*PLOTTING*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;symbol1 interpol=join value=dot;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AXIS1 LABEL = NONE ORDER = &amp;amp;cutoffweek. TO &amp;amp;lastfullweek.;&lt;/P&gt;&lt;P&gt;PROC GPLOT DATA = PCT_OSBYTIME&amp;amp;clientname.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; TITLE "OS Usage Overtime - &amp;amp;clientname.";&lt;/P&gt;&lt;P&gt;&amp;nbsp; PLOT PCT_USAGE * WEEK = OS&amp;nbsp; / haxis= AXIS1 ;&lt;/P&gt;&lt;P&gt;/* PLOT PCT_USAGE * WEEK = OS;*/&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC GPLOT DATA = PCT_BROWSERBYTIME&amp;amp;clientname.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; TITLE "Browser Usage Overtime - &amp;amp;clientname.";&lt;/P&gt;&lt;P&gt;&amp;nbsp; PLOT PCT_USAGE * WEEK = BROWSER&amp;nbsp; / haxis= AXIS1;&lt;/P&gt;&lt;P&gt;/* PLOT PCT_USAGE * WEEK = BROWSER;*/&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; /* Define symbol characteristics */&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;symbol1 color=vibg interpol=join value=dot; &lt;/P&gt;&lt;P&gt;PROC GPLOT DATA = PCT_RESLNBYTIME&amp;amp;clientname.;&lt;/P&gt;&lt;P&gt;&amp;nbsp; TITLE "Screen size usage Overtime - &amp;amp;clientname.";&lt;/P&gt;&lt;P&gt;&amp;nbsp; PLOT PCT_USAGE * WEEK = WIDTHBIN&amp;nbsp; / haxis= AXIS1;&lt;/P&gt;&lt;P&gt;/* PLOT PCT_USAGE * WEEK = WIDTHBIN ;*/&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 17:48:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143476#M5435</guid>
      <dc:creator>NareshAbburi</dc:creator>
      <dc:date>2014-10-27T17:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Line on the Dots for few cases - SAS GPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143477#M5436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It could depend on how your data is structured - are you using "plot y*x=browser" or do you have a separate y-variable for each browser (which you 'overlay')? And it might also depend on whether you're using a traditional device such as png, or activex (or java).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, here's an example that shows one way to create a plot like what it appears you're wanting:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://www.robslink.com/SAS/democd59/browser_wars.htm" title="http://www.robslink.com/SAS/democd59/browser_wars.htm"&gt;http://www.robslink.com/SAS/democd59/browser_wars.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.robslink.com/SAS/democd59/browser_wars_info.htm" title="http://www.robslink.com/SAS/democd59/browser_wars_info.htm"&gt;http://www.robslink.com/SAS/democd59/browser_wars_info.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="browser_wars.png" class="jive-image-thumbnail jive-image" height="350" src="https://communities.sas.com/legacyfs/online/7740_browser_wars.png" style="height: 350px; width: 700px;" width="700" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:02:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143477#M5436</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2014-10-27T18:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Line on the Dots for few cases - SAS GPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143478#M5437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have separate y variable for each category. I've single PCT variable for all the categories.&lt;/P&gt;&lt;P&gt;Please refer to the attached image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="plot1.PNG" class="jive-image-thumbnail jive-image" src="https://communities.sas.com/legacyfs/online/7741_plot1.PNG" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:05:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143478#M5437</guid>
      <dc:creator>NareshAbburi</dc:creator>
      <dc:date>2014-10-27T18:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Missing Line on the Dots for few cases - SAS GPLOT</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143479#M5438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case, the easiest way is to leave the color= off the symbol statement, and let it take colors from the ods style that is in use. Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goptions reset=symbol;&lt;/P&gt;&lt;P&gt;symbol1 value=dot interpol=join repeat=3;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.stocks;&lt;/P&gt;&lt;P&gt;plot close*date=stock;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to control the color of each line, you'll need a symbol statement for each line, such as ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;goptions reset=symbol;&lt;/P&gt;&lt;P&gt;symbol1 value=dot interpol=join color=red repeat=1;&lt;/P&gt;&lt;P&gt;symbol2 value=dot interpol=join color=pink repeat=1;&lt;/P&gt;&lt;P&gt;symbol3 value=dot interpol=join color=purple repeat=1;&lt;/P&gt;&lt;P&gt;proc gplot data=sashelp.stocks;&lt;/P&gt;&lt;P&gt;plot close*date=stock;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Oct 2014 18:15:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Missing-Line-on-the-Dots-for-few-cases-SAS-GPLOT/m-p/143479#M5438</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2014-10-27T18:15:23Z</dc:date>
    </item>
  </channel>
</rss>

