<?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: Plotting with sgplot procedure in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Plotting-with-sgplot-procedure/m-p/618944#M19348</link>
    <description>Can you provide a randomly generated input data set that we can use to test? I want to see if it runs on my system.</description>
    <pubDate>Tue, 21 Jan 2020 19:49:23 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2020-01-21T19:49:23Z</dc:date>
    <item>
      <title>Plotting with sgplot procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Plotting-with-sgplot-procedure/m-p/618939#M19347</link>
      <description>&lt;P&gt;We have a data matrix of 1544x1544 i.e. pixel coordinates and their colors.&amp;nbsp;We want to display that information graphically with the sgplot procedure.&amp;nbsp;The &lt;STRONG&gt;_tmp&lt;/STRONG&gt; dataset contains X, Y and color.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;x=1; y=1; color="CX000000";&amp;nbsp;&lt;BR /&gt;x=1; y=2; color="cxD3D3D3";&amp;nbsp;&lt;BR /&gt;x=1; y=3; color="cx03D3D3";&amp;nbsp;&lt;/P&gt;&lt;P&gt;...........................................................&lt;/P&gt;&lt;P&gt;...........................................................&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Total 1544 ^ 2 = 2 383 936 observations&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We use the following syntax:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data attrmap;&lt;BR /&gt;set _tmp;&lt;BR /&gt;retain id "myid";&lt;BR /&gt;altcolor=color;&lt;BR /&gt;min=_N_-0.1;max=_N_+0.1;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc sgplot data=_tmp rattrmap=attrmap;&lt;BR /&gt;scatter X=x Y=y /&lt;BR /&gt;colorresponse=nr markerattrs=(symbol=CircleFilled size=10)&lt;BR /&gt;rattrid=myid;&lt;BR /&gt;gradlegend "notitle";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We get the error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: An exception has been encountered.&lt;BR /&gt;Please contact technical support and provide them with the following traceback information:&lt;/P&gt;&lt;P&gt;The SAS task name is [SGPLOT]&lt;BR /&gt;ERROR: Read Access Violation SGPLOT&lt;BR /&gt;Exception occurred at (068DAECD)&lt;BR /&gt;Task Traceback&lt;BR /&gt;Address Frame (DBGHELP API Version 4.0 rev 5)&lt;BR /&gt;00000000068DAECD 000000000A0A70B0 sasods:tkvercn1+0x109E8D&lt;BR /&gt;000000000D7F9EC4 000000000A0A70B8 sasstgr:tkvercn1+0x78E84&lt;BR /&gt;000000000D7946DE 000000000A0A7700 sasstgr:tkvercn1+0x1369E&lt;BR /&gt;000000000754C4FA 000000000A0A7708 saswobc:tkvercn1+0x1B4BA&lt;BR /&gt;000000000753BECD 000000000A0A7800 saswobc:tkvercn1+0xAE8D&lt;BR /&gt;000000000D813F4A 000000000A0A7840 sasstgr:tkvercn1+0x92F0A&lt;BR /&gt;000000000D78971E 000000000A0A78B0 sasstgr:tkvercn1+0x86DE&lt;BR /&gt;000000000D813F4A 000000000A0A78F0 sasstgr:tkvercn1+0x92F0A&lt;BR /&gt;000000000D78E3EE 000000000A0A8290 sasstgr:tkvercn1+0xD3AE&lt;BR /&gt;000000000754C4FA 000000000A0A82D0 saswobc:tkvercn1+0x1B4BA&lt;BR /&gt;000000000753BECD 000000000A0A8390 saswobc:tkvercn1+0xAE8D&lt;BR /&gt;000000000D813F4A 000000000A0A83D0 sasstgr:tkvercn1+0x92F0A&lt;BR /&gt;000000000D78971E 000000000A0A8440 sasstgr:tkvercn1+0x86DE&lt;BR /&gt;000000000D813F4A 000000000A0A8480 sasstgr:tkvercn1+0x92F0A&lt;BR /&gt;000000000D78E3EE 000000000A0A8E20 sasstgr:tkvercn1+0xD3AE&lt;BR /&gt;000000000D813F4A 000000000A0A8E60 sasstgr:tkvercn1+0x92F0A&lt;BR /&gt;000000000D7DB15F 000000000A0A8ED0 sasstgr:tkvercn1+0x5A11F&lt;BR /&gt;000000000D813F4A 000000000A0A8F10 sasstgr:tkvercn1+0x92F0A&lt;BR /&gt;000000000D7ECFB8 000000000A0A9350 sasstgr:tkvercn1+0x6BF78&lt;BR /&gt;000000000D813F4A 000000000A0A9390 sasstgr:tkvercn1+0x92F0A&lt;BR /&gt;000000000D7EB6D8 000000000A0A9990 sasstgr:tkvercn1+0x6A698&lt;BR /&gt;000000000D813F4A 000000000A0A99D0 sasstgr:tkvercn1+0x92F0A&lt;BR /&gt;000000000D7FD185 000000000A0A9A40 sasstgr:tkvercn1+0x7C145&lt;BR /&gt;00000000069E43EA 000000000A0A9A80 sasods:tkvercn1+0x2133AA&lt;BR /&gt;0000000006821A69 000000000A0A9CA0 sasods:tkvercn1+0x50A29&lt;BR /&gt;0000000006820D4F 000000000A0A9F20 sasods:tkvercn1+0x4FD0F&lt;BR /&gt;000000000C5455DA 000000000A0A9F28 sassgplo:tkvercn1+0xC459A&lt;BR /&gt;000000000C4BCD3F 000000000A0AFBB0 sassgplo:tkvercn1+0x3BCFF&lt;BR /&gt;00000000031B946E 000000000A0AFBB8 sashost:Main+0x113BE&lt;BR /&gt;00000000031BF2CD 000000000A0AFF20 sashost:Main+0x1721D&lt;BR /&gt;00007FFFAD817BD4 000000000A0AFF28 KERNEL32:BaseThreadInitThunk+0x14&lt;BR /&gt;00007FFFAE76CED1 000000000A0AFF58 ntdll:RtlUserThreadStart+0x21&lt;/P&gt;&lt;P&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What could be an alternative solution to graphically represent such a big array?&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 19:33:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Plotting-with-sgplot-procedure/m-p/618939#M19347</guid>
      <dc:creator>Jurgita</dc:creator>
      <dc:date>2020-01-21T19:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting with sgplot procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Plotting-with-sgplot-procedure/m-p/618944#M19348</link>
      <description>Can you provide a randomly generated input data set that we can use to test? I want to see if it runs on my system.</description>
      <pubDate>Tue, 21 Jan 2020 19:49:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Plotting-with-sgplot-procedure/m-p/618944#M19348</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-01-21T19:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting with sgplot procedure</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Plotting-with-sgplot-procedure/m-p/618946#M19349</link>
      <description>&lt;P&gt;Have you tried the HEATMAP statement in proc sgplot? By default it only accomodates 100000 bins but you can increase that number with the NXYBINSMAX= option of the ODS GRAPHICS statement.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 19:59:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Plotting-with-sgplot-procedure/m-p/618946#M19349</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-01-21T19:59:23Z</dc:date>
    </item>
  </channel>
</rss>

