<?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: Problem with JMP and R (R Send() / R Get() return &amp;quot;The final R statement is incomplete.&amp;quot;) in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/338558#M58657</link>
    <description>&lt;P&gt;We have come to the conclusion that&amp;nbsp;JMP 15.x will not be supporting R 4.0.x. Removing security updates is not ideal and may present unknown vulnerabilities. I suggest speaking with your IT professional and following their recommendations. If they state the update should be in place, then it should be installed again. Doing so will require the use of R 3.6 with JMP 15, until the next major release of JMP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Dec 2020 16:55:13 GMT</pubDate>
    <dc:creator>Dahlia_Watkins</dc:creator>
    <dc:date>2020-12-01T16:55:13Z</dc:date>
    <item>
      <title>Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/336828#M58427</link>
      <description>&lt;P&gt;Hi, recently i got an problem with JMP 15.2.0 send/get data from R 4.0.3&lt;/P&gt;&lt;P&gt;I just run the following easy script its seem like I can connect to R but cannot send or get data from R using R Send() / R Get()&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;R Init();
x = [1,2,3];
R Send(x);
R Term();&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Results:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;The final R statement is incomplete.
Send data for "x" failed&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another problem is when I use R submit() it always return -1. For example&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;R Init();
R submit("library(dplyr)");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Results in Log file:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;TKIntRJMP.R version 14.0
Warning: 
Attaching package: 'dplyr'

The following objects are masked from 'package:stats':

    filter, lag

The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union

-1&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I tried to reinstall JMP and R but problem still persist&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate any guidance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 21:58:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/336828#M58427</guid>
      <dc:creator>satitpor</dc:creator>
      <dc:date>2023-06-09T21:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337130#M58453</link>
      <description>&lt;P&gt;When JMP initializes R JMP creates a new session with R. The session is separate from your R sessions established within R. That said, you may need to install R packages in such a way that they can be seen in the session JMP creates. One example:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;R Init();
R Submit( "

install.packages('dplyr')

" );

R Submit(
	"
library(dplyr)
"
	
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Regarding the error:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;The final R statement is incomplete.
Send data for "x" failed&lt;/PRE&gt;
&lt;P&gt;I was unable to reproduce this error in JMP 15.2 on OSX 10.15.7, or on Windows 10. Perhaps you are running multiple versions of R on the same system (which is not recommended with JMP)? Also, I am not aware of the operating system you are running JMP and R on. That said, I would suggest contacting Technical Support so they can investigate this further.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
R Init();
x = [1, 2, 3];
R Send( x );
//x2 = R Get (x);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Nov 2020 17:27:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337130#M58453</guid>
      <dc:creator>Dahlia_Watkins</dc:creator>
      <dc:date>2020-11-24T17:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337135#M58457</link>
      <description>&lt;P&gt;Additionally, the warning message seems to be related to two or more packages sharing the same name. It appears you may have to remove the ambiguity by referencing the package name when referring to the package's function(s).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;TKIntRJMP.R version 14.0
Warning: 
Attaching package: 'dplyr'

The following objects are masked from 'package:stats':

    filter, lag

The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union

-1&lt;/PRE&gt;
&lt;P&gt;FYI: To suppress the warning, you can submit "warn.conflicts = FALSE" when you invoke your package.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;R Init();
R Submit( "

install.packages('dplyr')

" );

R Submit(
"
library(dplyr, warn.conflicts = FALSE)
"

);

R Term ();&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Nov 2020 17:56:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337135#M58457</guid>
      <dc:creator>Dahlia_Watkins</dc:creator>
      <dc:date>2020-11-24T17:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337254#M58475</link>
      <description>&lt;P&gt;Thanks, for your suggestions.&lt;/P&gt;&lt;P&gt;I'm using R 4.03 with Windows 10 before that I'm using R 4.02 but i already uninstalled from the system.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;The final R statement is incomplete.
Send data for "x" failed&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRIKE&gt;This problem seems to happen only when I connect to company network using VPN from my home network. The problem is gone after I directly connect to company network within company. I think it's about windows firewall that block connection between JMP and R.&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;Problem seems to happen after I run incomplete script in JMP with R.&lt;/P&gt;&lt;P&gt;When it returns an error from my first incorrect syntax script after that even I correct my script and run the script it'll return "&lt;CODE class=" language-jsl"&gt;The final R statement is incomplete.&lt;/CODE&gt;" I tried to restart computer but problem still persists.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 07:11:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337254#M58475</guid>
      <dc:creator>satitpor</dc:creator>
      <dc:date>2020-11-25T07:11:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337357#M58486</link>
      <description>&lt;P&gt;I would verify the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;You have a R_HOME user-defined environment variable setup, pointing to the path where R 4.0.3 lives.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="lia-indent-padding-left-60px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="R_Home.jpg" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/28601iD874964BCC9DB86E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="R_Home.jpg" alt="R_Home.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Only one version of R is installed on the machine.&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;If the issue persists, contact Technical Support.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 13:59:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337357#M58486</guid>
      <dc:creator>Dahlia_Watkins</dc:creator>
      <dc:date>2020-11-25T13:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337573#M58513</link>
      <description>I can confirm the same behavior on at least 1 computer with R version 4.0.3 and JMP 15.2.1 on windows 10. R version 3.x seems to work okay though.</description>
      <pubDate>Thu, 26 Nov 2020 01:45:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337573#M58513</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2020-11-26T01:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337600#M58516</link>
      <description>&lt;P&gt;Thanks again for your kind suggestion.&lt;/P&gt;&lt;P&gt;I already add R_HOME in system variables yet the problem still there.&lt;/P&gt;&lt;P&gt;I will contact Technical Support as your suggestion.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 09:04:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/337600#M58516</guid>
      <dc:creator>satitpor</dc:creator>
      <dc:date>2020-11-26T09:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/338409#M58627</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got a solution from SAS technicial support about this issue.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Did you have this update installed on your PC ,https://www.catalog.update.microsoft.com/Search.aspx?q=KB4586786 ? 
If yes, remove the update will fix the issue.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The problem was came from windows update &lt;STRONG&gt;KB4586786&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I uninstall this update then the problem has been fixed.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2020 04:21:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/338409#M58627</guid>
      <dc:creator>satitpor</dc:creator>
      <dc:date>2020-12-01T04:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with JMP and R (R Send() / R Get() return "The final R statement is incomplete.")</title>
      <link>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/338558#M58657</link>
      <description>&lt;P&gt;We have come to the conclusion that&amp;nbsp;JMP 15.x will not be supporting R 4.0.x. Removing security updates is not ideal and may present unknown vulnerabilities. I suggest speaking with your IT professional and following their recommendations. If they state the update should be in place, then it should be installed again. Doing so will require the use of R 3.6 with JMP 15, until the next major release of JMP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2020 16:55:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problem-with-JMP-and-R-R-Send-R-Get-return-quot-The-final-R/m-p/338558#M58657</guid>
      <dc:creator>Dahlia_Watkins</dc:creator>
      <dc:date>2020-12-01T16:55:13Z</dc:date>
    </item>
  </channel>
</rss>

