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
1
vote
0 answers

Eclipse StatET, matching brackets

Does anyone know how I can get Eclipse (w/ StatET) to highlight matching brackets within strings? For example I have the following in the editor: "this is a a string (asdf)" I would like the matching parenthesis to be highlighted when my cursor is…
Alex
  • 19,533
  • 37
  • 126
  • 195
1
vote
1 answer

What's the difference between an "R Project" and "R Package Project" in Eclipse StatET?

It seems the Eclipse R add-on StatET, has two difference kinds of R Projects. What are the differences between these two?
JohnRos
  • 1,091
  • 2
  • 10
  • 20
1
vote
0 answers

Mysterious error messages in Eclipse (using StatET/R)

All, I'm not sure when this started, but I've noticed that just about any time I add to an R script in Eclipse, I get a warning in Eclipse's error log that looks like the following: Unhandled/Unknown code of R AST node: Code: 0x1000000 Node: <-…
Al R.
  • 2,430
  • 4
  • 28
  • 40
1
vote
1 answer

Combine syntax highlighting of different Eclipse editors

I use Eclipse, StatET and the Sweave plugin to write my R and Latex code. The cool thing is that R and Latex code can be put together into one file, however you end up with a syntax highlighting problem. I have loads of R code and I very much like…
user969113
  • 2,349
  • 10
  • 44
  • 51
1
vote
1 answer

rj error when running rj console in Eclipse using StatET plugin

I'm new to R and I use Eclipse a lot so I decided to install the StatET plugin in eclipse. Everything went smoothly except that I have the same problem as shown here... Random true facts: Windows XP Version 5.1.2600 Eclipse 3.6 StatET 0.9.2 I tried…
b10hazard
  • 7,399
  • 11
  • 40
  • 53
1
vote
1 answer

How can we program statet to use both knitr and pdflatex

In the new version of statet4.0, I would like to find a way to configure sweave to run with both knitr and pdflatex. In external tool configuration > sweave Document processing there an example of using tools::texi2dvi(file= "${resource_loc}", pdf=…
Cedric
  • 2,412
  • 17
  • 31
1
vote
1 answer

ClassNotFoundException for StatEt Eclipse plugin / RJ. Compatibility issue with Java9?

I installed RJ for StatEt with: > install.packages(c("rj", "rj.gd"), repos="http://download.walware.de/rj-2.1") Installiere Pakete nach 'C:/Users/eis/Documents/R/win-library/3.4' (da 'lib' nicht spezifiziert) versuche URL…
Stefan
  • 10,010
  • 7
  • 61
  • 117
1
vote
1 answer

How to configure arara to post process .Rnw files in statet / Eclipse

I would like to use arara to post process the .tex files produced from Sweave (.Rnw) documents in R, and use it to build glossaries or bibliographies in reports. How do you integrate that in the statet eclipse plugins ? The arara header is put on…
Cedric
  • 2,412
  • 17
  • 31
1
vote
1 answer

statEt troubleshooting

I have downloaded R and statET to run R through eclipse, additionally, I have the 'rj' package downloaded, but when I try to launch R through eclipse, I get this error message. I suspect that my 'rj' package is in the wrong spot, but I don't know…
M. Black
  • 11
  • 2
1
vote
0 answers

How to automatically start and close R Console for StatEt plugin?

I want to use the Eclipse plugin StatEt to develop R code. In order to do so, I always have to start my R Console run configuration. Otherwise I get the error No session of R is active in the current workbench window. When I am finished and try to…
Stefan
  • 10,010
  • 7
  • 61
  • 117
1
vote
1 answer

How to use "R Graph Builder" and "R Graphics" view with StatEt Eclipse Plugin?

I am new to R and want to use the Eclipse plugin StatEt with Oxygen.2 Release (4.7.2) on Windows 7. I tried to create an example plot with the R Graph Builder. I click the "play button" and get following output on the R Code tab. Furthermore, I hear…
Stefan
  • 10,010
  • 7
  • 61
  • 117
1
vote
1 answer

Conduit streaming monad state

I have a conduit pipeline whose monad includes state. At one point I'd like to have a conduit that streams the state to the following ones (this is a simplified version of what I actually need). But I have trouble making this. The following example…
jorgen
  • 3,425
  • 4
  • 31
  • 53
1
vote
0 answers

Modify R Console input/output encoding in Eclipse + StatET

I'm trying to make Eclipse's console work with Polish (or any other non-english) characters, whether ANSI or UTF-8 encoded. It seems that, on Windows, R is only able to encode with ANSI, while Eclipse"s console forces UTF-8 or ISO-8859-1. Trying to…
mjktfw
  • 840
  • 6
  • 14
1
vote
0 answers

How to import the source code of existing R package into eclipse (plugin: statET)

I am using statET plugin in Eclipse for R. I created a new R package project, called it dummy and compared the structure to that of the source code of an existing R package. Obviously they are different - but I expected that dummy package would…
1
vote
1 answer

How to give arguments to my R script working with Eclipse and StatET

How do i pass (and parse) arguments to my R script using the run configuration option in eclipse? I am using Eclipse Mars - StatET 3.5.1 - R 3.2.2 Normally from the command line i do something like this: Rscript myscript.R argument1 argument2 And…