Questions tagged [statet]

StatET is an Eclipse based IDE (integrated development environment) for R.

The statET project provides Eclipse plugins and R packages for an Eclipse based IDE for R.

It offers a set of mature tools for R coding and package building. This includes a fully integrated R Console, Object Browser and R Help System, whereas multiple local and remote installations of R are supported.

StatET is provided as plug-in for the Eclipse IDE. Therefore the user can combine it with a wide range set of tools working on top of the Eclipse Platform. Like R and Eclipse, StatET is open source software, and works on many operating systems. It teams up with texlipse (another Eclipse plugin) to handle clean output with latex.


statET project home : http://www.walware.de/goto/statet
statET Tutorial : http://www.splusbook.com/RIntro/R_Eclipse_StatET.pdf
statET and texlipse tutorial : http://jeromyanglim.blogspot.com/2010/02/getting-started-with-sweave-r-latex.html

74 questions
41
votes
11 answers

error: unable to load installed packages just now

When I tried to run the R console in Eclipse, I got this error: ....Please make sure that R package 'rj' (1.1 or compatible) is installed... So I tried to install it in the R console like this: install.packages(c("rj", "rj.gd"),…
Alex Luya
  • 9,412
  • 15
  • 59
  • 91
23
votes
1 answer

Architect / StatET: Launching R Console was cancelled because R engine failed

I recently upgraded to Architect version 0.9.7 on my Win 7 machine. However, after starting Architect, the RJ console wouldn't launch and I got the error message: ‘Launching the R Console was cancelled, because It seems starting the R engine…
Aditya
  • 1,554
  • 1
  • 13
  • 23
19
votes
3 answers

Error in install.packages: internet routines cannot be loaded using StatET while it works in R console

I was a happy user of StatET on Ubuntu 14.04 until recently when after R upgrades strange things begin to happen. Anything related to network operations fails. For example, I can not install packages from CRAN any more: >…
Samo
  • 2,065
  • 20
  • 41
16
votes
2 answers

How to debug an R package (with C and C++ code) in Eclipse?

In Visual Studio we can use "attach to process" in order to debug the DLLs. Is there any way to debug C/C++ code of an R package in Eclipse/StatET (i.e. something like this example of debugging external code linked to Scilab)?
user1436187
  • 3,252
  • 3
  • 26
  • 59
11
votes
2 answers

Is there a good "find all" function in Eclipse?

I have been using Eclipse for R and C++. So far I have not been able to find a reliable "find all" function. It seems to be an easy concept, I search for a string such as "rows" and the function should return all occurences of it within the that I…
power
  • 1,680
  • 3
  • 18
  • 30
11
votes
1 answer

Is there a way to knitr and produce .rmd files using the external tools function of the StatET Eclipse plugin?

I'm becoming a fan of reproducible analyses and of Sweave, Beamer and specially of the knitr package. RStudio allows to Sweave and knit documents with just one click, but although RStudio is easy to install, it is quite unstable and does not have…
rogervv
  • 111
  • 4
10
votes
3 answers

StatET in Eclipse and R

I've managed to install StatET into eclipse, and I have a Java project called "Test" with some code in there. I'd like to be able to keep a .R file in that project folder and run it as a stand alone R script, seperate from the Java program. How can…
CodeGuy
  • 28,427
  • 76
  • 200
  • 317
8
votes
1 answer

encoding inferno german special characters

in StatET eclipse as well as in RStudio I set options(encoding = "ISO-8859-1") in StatET I have: Sys.getlocale() [1]…
adibender
  • 7,288
  • 3
  • 37
  • 41
8
votes
2 answers

How to set up Eclipse + StatET + Rcpp on Windows

When I came to know that I can create a R package with C++ using Rcpp, I was excited about it and eager to know development environment for it. And thanks to Fell Stat Blog, I could quickly establish a great environment using Eclipse with StatET,…
Tae-Sung Shin
  • 20,215
  • 33
  • 138
  • 240
8
votes
2 answers

Error:Cannot compile a simple JNI program

When I tried to run r console in eclipse,got this error: ....Please make sure that R package 'rj' (1.1 or compatible) is installed... So I tried to intall in R console like this: install.packages(c("rj", "rj.gd"),…
Alex Luya
  • 9,412
  • 15
  • 59
  • 91
6
votes
3 answers

Using StatET with Eclipse in Win64: "no session of R is active in the current workbench window"

What do I do when I get the following error message in Eclipse when trying to launch R? "no session of R is active in the current workbench window"
Dr Dave
  • 453
  • 1
  • 4
  • 11
6
votes
1 answer

How do you tell programmatically if you are running Architect/StatET?

Different IDEs have quirks, and so it's occasionally useful to be able to know what IDE you are using to run R. You can test if you are running RStudio by testing for the RSTUDIO environment variable. is_rstudio <- function() { env <-…
Richie Cotton
  • 118,240
  • 47
  • 247
  • 360
3
votes
2 answers

How to index R library for Help view of StatEt Eclipse plugin?

When I show the view "R Help" of the StatEt Eclipse plugin I get following error: HTTP ERROR 404 Problem accessing /rhelp/browse/default-workbench/. Reason: The R library of the requested R environment R is not yet indexed.…
Stefan
  • 10,010
  • 7
  • 61
  • 117
3
votes
1 answer

StateT and non-determinism monad: a simple example

As part of learning how to work with StateT and the nondeterminism monad, I'd like to write a function which uses these to enumerate the partitions of an integer (while being allowed to reuse integers). For example, passing an argument of 4 should…
iceman
  • 2,020
  • 2
  • 17
  • 24
3
votes
2 answers

Statet in eclipse does not find the rj package

I cannot get Eclipse, Statet, and R to work together. I receive an error when I launch R: Launching the R Console was cancelled, because it seems starting the R engine failed. Please make sure that R package 'rj' (2.0 or compatible) is installed…
1
2 3 4 5