R error crashes RM
tennenrishin
New Altair Community Member
In R,
Error: '\d' is an unrecognized escape in character string starting "\d"
(because it should have been '\\d')
But in RM
grep('\d','1')results in
Error: '\d' is an unrecognized escape in character string starting "\d"
(because it should have been '\\d')
But in RM
<?xml version="1.0" encoding="UTF-8" standalone="no"?>causes an abrupt termination of RM, without any prompts or messages.
<process version="5.3.008">
<context>
<input/>
<output/>
<macros/>
</context>
<operator activated="true" class="process" compatibility="5.3.008" expanded="true" name="Process">
<process expanded="true">
<operator activated="true" class="r:execute_script_r" compatibility="5.3.000" expanded="true" height="60" name="pushChart" width="90" x="313" y="75">
<parameter key="script" value="grep('\d','1')"/>
<enumeration key="inputs"/>
<list key="results"/>
</operator>
<portSpacing port="source_input 1" spacing="0"/>
<portSpacing port="sink_result 1" spacing="0"/>
</process>
</operator>
</process>
0
Answers
-
Hi,
I've had a look into this and it seems like we can't do anything about it The library we are using creates a JRI session to R.
When providing the command you've posted this session even crashes the Java Runtime Environment:
I'm going to file an issue for this, but probably there is no easy fix for this.
#
# A fatal error has been detected by the Java Runtime Environment:
#
# Internal Error (os_windows_x86.cpp:149), pid=10952, tid=10904
# guarantee(result == EXCEPTION_CONTINUE_EXECUTION) failed: Unexpected result from topLevelExceptionFilter
#
# JRE version: 7.0_07-b11
# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.3-b01 mixed mode windows-amd64 compressed oops)
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
#
# An error report file with more information is saved as:
# C:\Users\nwoehler\workspace\RapidMiner\hs_err_pid10952.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.sun.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
Best,
Nils0