<?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: My scatter statement on the proc sgplot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583658#M18776</link>
    <description>&lt;P&gt;Are there any ERRORs or WARNINGs in the log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think anyone is going to try to download that file. This is a security risk. You need to follow the instructions I linked to in order to provide us with the data (and we don't need the entire data set, a 100 lines is more than enough).&lt;/P&gt;</description>
    <pubDate>Sat, 24 Aug 2019 13:41:26 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2019-08-24T13:41:26Z</dc:date>
    <item>
      <title>My scatter statement on the proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583634#M18773</link>
      <description>&lt;P&gt;My software version: sas base v9.4 and sas eg v7.15&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing gpath="c:\sasabc"; 
ods graphics on/ imagefmt=png imagename="plot" width=3200 height=4000; 
proc sgplot data=A;
scatter y=day x=time_1 / transparency=0.9 markerattrs=(symbol=circlefilled color=red size=6);
yaxis label="Day" labelattrs=(size=12) valueattrs=(size=12) grid values=(1 to 31 by 1);
xaxis label="Time" labelattrs=(size=12) valueattrs=(size=8) interval=hour ; 
ods graphics off;
ods listing close;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My data:&lt;/P&gt;&lt;P&gt;see attachments&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Description:&lt;/P&gt;&lt;P&gt;I could't draw this statistical plot via the above file and code on SAS base. However, it can work grudgingly on SAS EG.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#question 1:&lt;/P&gt;&lt;P&gt;When I press the execute button, SAS base showed that PROC SGPLOT is carrying out. It took more than 10 minutes to output no results. How to solve this question?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#question 2:&lt;/P&gt;&lt;P&gt;It can work on SAS EG. However, it only showed the contracted drawing and couldn't showed the designed plot. How to solve this question?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Image 020.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/32002i0BA5BD8D1DDD1294/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image 020.png" alt="Image 020.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2019 12:54:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583634#M18773</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2019-08-24T12:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: My scatter statement on the proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583650#M18774</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/165497"&gt;@Cingchih&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;My software version: sas base v9.4 and sas eg v7.15&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing gpath="c:\sasabc"; 
ods graphics on/ imagefmt=png imagename="plot.png" width=3200 height=4000; 
proc sgplot data=A;
scatter y=day x=time_1 / transparency=0.9 markerattrs=(symbol=circlefilled color=red size=6);
yaxis label="Day" labelattrs=(size=12) valueattrs=(size=12) grid values=(1 to 31 by 1);
xaxis label="Time" labelattrs=(size=12) valueattrs=(size=8) interval=hour ; 
ods graphics off;
ods listing close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My data:&lt;/P&gt;
&lt;P&gt;see attachments&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Description:&lt;/P&gt;
&lt;P&gt;I could't draw this statistical plot via the above file and code on SAS base. However, it can work grudgingly on SAS EG.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#question 1:&lt;/P&gt;
&lt;P&gt;When I press the execute button, SAS base showed that PROC SGPLOT is carrying out. It took more than 10 minutes to output no results. How to solve this question?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What did the SAS log say for PROC SGPLOT? Were there any errors, warnings?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#question 2:&lt;/P&gt;
&lt;P&gt;It can work on SAS EG. However, it only showed the contracted drawing and couldn't showed the designed plot. How to solve this question?&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What's wrong with this plot?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, many of us will not download Microfsoft office documents, as they are security threats. Please provide a small portion of your data using this method: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How large is your real data set anyway? How many records, how many observations?&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2019 11:25:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583650#M18774</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-08-24T11:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: My scatter statement on the proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583656#M18775</link>
      <description>&lt;P&gt;attachment file&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/open?id=1-hDSV00_VJtMTEHfNbADvzv7n5Id8wwV" target="_self"&gt;https://drive.google.com/open?id=1-hDSV00_VJtMTEHfNbADvzv7n5Id8wwV&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;280kb, two&amp;nbsp;Variables, 18004 records&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the&amp;nbsp;&lt;SPAN&gt;contracted drawing, its width and height is not 3200px and 4000px, respectively.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;In addition, its didn't export the png file.&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2019 12:58:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583656#M18775</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2019-08-24T12:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: My scatter statement on the proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583658#M18776</link>
      <description>&lt;P&gt;Are there any ERRORs or WARNINGs in the log?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think anyone is going to try to download that file. This is a security risk. You need to follow the instructions I linked to in order to provide us with the data (and we don't need the entire data set, a 100 lines is more than enough).&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2019 13:41:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583658#M18776</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-08-24T13:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: My scatter statement on the proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583666#M18777</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Are there any ERRORs or WARNINGs in the log?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It didn't show any errors or warnings. Because It is still running. I tried to let it run, but it took more than 10 minutes not to finish. Finally, I quitted the running code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data a;&lt;BR /&gt;input time_1 time8. day ;&lt;BR /&gt;format time_1 time8.;&lt;BR /&gt;datalines;&lt;BR /&gt;01:26:00 1&lt;BR /&gt;02:01:00 1&lt;BR /&gt;06:09:00 1&lt;BR /&gt;02:49:00 1&lt;BR /&gt;06:20:00 1&lt;BR /&gt;06:19:00 1&lt;BR /&gt;07:47:00 1&lt;BR /&gt;16:25:00 2&lt;BR /&gt;15:51:00 2&lt;BR /&gt;15:12:00 2&lt;BR /&gt;16:34:00 2&lt;BR /&gt;16:26:00 2&lt;BR /&gt;16:43:00 2&lt;BR /&gt;17:56:00 2&lt;BR /&gt;18:31:00 2&lt;BR /&gt;18:53:00 2&lt;BR /&gt;19:10:00 2&lt;BR /&gt;15:00:00 3&lt;BR /&gt;15:40:00 3&lt;BR /&gt;16:10:00 3&lt;BR /&gt;13:26:00 3&lt;BR /&gt;12:15:00 3&lt;BR /&gt;16:53:00 3&lt;BR /&gt;18:47:00 3&lt;BR /&gt;20:00:00 3&lt;BR /&gt;20:50:00 3&lt;BR /&gt;11:08:00 5&lt;BR /&gt;11:09:00 5&lt;BR /&gt;10:20:00 5&lt;BR /&gt;10:56:00 5&lt;BR /&gt;12:07:00 5&lt;BR /&gt;11:10:00 5&lt;BR /&gt;14:24:00 5&lt;BR /&gt;14:11:00 5&lt;BR /&gt;14:12:00 5&lt;BR /&gt;14:45:00 5&lt;BR /&gt;14:44:00 5&lt;BR /&gt;12:31:00 5&lt;BR /&gt;15:28:00 5&lt;BR /&gt;;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Aug 2019 14:16:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583666#M18777</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2019-08-24T14:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: My scatter statement on the proc sgplot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583671#M18779</link>
      <description>I am sorry. I neglected the "run" word at the proc sgplot.&lt;BR /&gt;&lt;BR /&gt;Thank you for your reply.</description>
      <pubDate>Sat, 24 Aug 2019 14:59:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/My-scatter-statement-on-the-proc-sgplot/m-p/583671#M18779</guid>
      <dc:creator>Cingchih</dc:creator>
      <dc:date>2019-08-24T14:59:30Z</dc:date>
    </item>
  </channel>
</rss>

