R Syntax AutoFill for Stat ET / Eclipse?

I just switched to Eclipse / StatET for code in R. I understand that syntax additions appear with Ctrl + Space, and you should get information about the basic functions / arguments. But

I get almost nothing:

Simple functions like “plot” are not even listed. In fact, a function starting with the letter p is not specified ... It just displays the minimal syntax for loops, for example.

This is normal? Is there a way to associate it with online R syntax documentation?

+4
source share
2 answers

A few things. You need to use the RMI / RJ console (indicated in the startup type of your configuration launch), code completion does not work on the RTerm console.

On the "R Console" tab (still in startup configuration) you need to "enable Object DB"

When this is done, run R and download the packages you need. You should see a completed view of the "Browse browser object."

At this moment I am betting on code completion!

+3
source

Ok, I was able to fix it, I used the Eclipse 32bits that I received from the pythonxy installer. Replacing it with the latest 64-bit Eclispe, the JRE bug is fixed.

Thanks for your help Dr G.

+1
source

Source: https://habr.com/ru/post/1332341/


All Articles