<?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: ERROR: Floating Point Overflow and ERROR: Termination due to Floating Point Exception in graphs. in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511719#M2235</link>
    <description>&lt;P&gt;Appears this errors when I try:&lt;BR /&gt;ERROR: Requested function is not supported.&lt;BR /&gt;ERROR: No data set open to look up variables.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Nov 2018 16:02:10 GMT</pubDate>
    <dc:creator>JVmano</dc:creator>
    <dc:date>2018-11-09T16:02:10Z</dc:date>
    <item>
      <title>ERROR: Floating Point Overflow and ERROR: Termination due to Floating Point Exception in graphs.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511458#M2174</link>
      <description>&lt;P&gt;Hey, this erros accours when I try to run any graph from this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename resp temp;

/* Neat service from Open Notify project */
proc http 
url="http://apiadvisor.climatempo.com.br/api/v1/forecast/locale/6731/days/15?token=5ffc1cd67c7deb0d259d9388ea9db118"
method= "GET"
out=resp;
run;

/* Assign a JSON library to the HTTP response */
libname space JSON fileref=resp;

/* Print result, dropping automatic ordinal metadata */

proc print data=SPACE.DATA_RAIN label; 
var probability precipitation;

run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Histogram graph code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics / reset width=6.4in height=4.8in imagemap;

proc sgplot data=SPACE.DATA_RAIN;
	histogram probability /;
	yaxis grid;
run;

ods graphics / reset;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Histogram Log:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: ODS statements in the SAS Studio environment may disable some output features.&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;73&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 /*&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 *&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 * Task code generated by SAS Studio 3.71&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 *&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;78 * Generated on '08/11/18 15:52'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;79 * Generated by 'sasdemo'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;80 * Generated on server 'LOCALHOST'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;81 * Generated on SAS platform 'Linux LIN X64 2.6.32-696.20.1.el6.x86_64'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;82 * Generated on SAS version '9.04.01M5P09132017'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 * Generated on browser 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko)&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;83 ! Chrome/69.0.3497.100 Safari/537.36 OPR/56.0.3051.99'&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 * Generated on web client&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 ! 'http://localhost:10080/SASStudio/371/main?locale=pt_BR&amp;amp;zone=GMT-02%253A00&amp;amp;http%3A%2F%2Flocalhost%3A10080%2FSASStudio%2F3&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;84 ! 71%2F='&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;85 *&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;86 */&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;87&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;88 ods graphics / reset width=6.4in height=4.8in imagemap;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;89&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;90 proc sgplot data=SPACE.DATA_RAIN;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;91 histogram probability /;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;92 yaxis grid;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;93 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Floating Point Overflow.&lt;/DIV&gt;&lt;DIV class="sasError"&gt;ERROR: Termination due to Floating Point Exception&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: PROCEDURE SGPLOT used (Total process time):&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;real time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;cpu time 0.00 seconds&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;94&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;95 ods graphics / reset;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;96&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;97 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;110&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Nov 2018 18:08:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511458#M2174</guid>
      <dc:creator>JVmano</dc:creator>
      <dc:date>2018-11-08T18:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Floating Point Overflow and ERROR: Termination due to Floating Point Exception in graphs.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511658#M2220</link>
      <description>&lt;P&gt;Could you switch into PROC UNIVARIATE ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; univariate &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;SPACE&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;DATA_RAIN&lt;SPAN class="token punctuation"&gt;;&lt;BR /&gt;&lt;/SPAN&gt; var probability;
	&lt;SPAN class="token keyword"&gt;histogram&lt;/SPAN&gt; probability ;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Nov 2018 13:08:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511658#M2220</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-11-09T13:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Floating Point Overflow and ERROR: Termination due to Floating Point Exception in graphs.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511719#M2235</link>
      <description>&lt;P&gt;Appears this errors when I try:&lt;BR /&gt;ERROR: Requested function is not supported.&lt;BR /&gt;ERROR: No data set open to look up variables.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2018 16:02:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511719#M2235</guid>
      <dc:creator>JVmano</dc:creator>
      <dc:date>2018-11-09T16:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Floating Point Overflow and ERROR: Termination due to Floating Point Exception in graphs.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511917#M2276</link>
      <description>&lt;P&gt;I could running the following code .&lt;/P&gt;
&lt;PRE&gt;32   proc univariate data=sashelp.class;
33   var weight;
34   histogram weight;
35   run;

NOTE: PROCEDURE UNIVARIATE used (Total process time):
      real time           1.74 seconds
      cpu time            0.18 seconds

&lt;/PRE&gt;</description>
      <pubDate>Sat, 10 Nov 2018 10:45:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511917#M2276</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-11-10T10:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR: Floating Point Overflow and ERROR: Termination due to Floating Point Exception in graphs.</title>
      <link>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511996#M2282</link>
      <description>&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Try making a copy of the data instead of using it directly from the SPACE library:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics / reset width=6.4in height=4.8in imagemap;

data work.data_rain; 
set space.data_rain; 
run;

proc sgplot data=work.data_rain;
  histogram probability /;
  yaxis grid;
run; quit;

ods graphics / reset;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;Vince DelGobbo&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="verdana,geneva"&gt;SAS R&amp;amp;D&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Nov 2018 12:56:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/ERROR-Floating-Point-Overflow-and-ERROR-Termination-due-to/m-p/511996#M2282</guid>
      <dc:creator>Vince_SAS</dc:creator>
      <dc:date>2018-11-11T12:56:42Z</dc:date>
    </item>
  </channel>
</rss>

