similar to: Dock graphs when using R in Eclipse with StatET plug In

Displaying 20 results from an estimated 3000 matches similar to: "Dock graphs when using R in Eclipse with StatET plug In"

2009 Jul 12
0
Installing Eclipse Plug-In for R: "StatET"
Dear R users, Thanks in advance. I am using R 2.9.1 on Windows XP. I am trying to install above, but faced problem. I have described the steps below. 1. I like to install locally. That means I like to install after downloading the required files into my hard drive. 2. Java Runtime Environment (JRE 1.5.0-07) is installed 3. I have downloaded eclipse-SDK-3.5-win32.zip - installed
2009 Aug 26
1
rJava error for large XML object return in StatET plugin
Hi R List, I get this error using StatET R plugin in Eclipse. >sessionInfo() R version 2.9.0 (2009-04-17) i386-pc-mingw32 locale: LC_COLLATE=English_United States.1252;LC_CTYPE=English_United States.1252;LC_MONETARY=English_United States.1252;LC_NUMERIC=C;LC_TIME=English_United States.1252 I am running Eclipse Platform Version: 3.4.1 Build id: M20080911-1700 on Windows XP My R process
2011 Aug 17
1
[statEt] Rmpi problem in Eclipse statEt
Hi, I try use Rmpi package to my compute. In my work I'm using eclipse version 3.6.2 and statEt version 0.10.0 (launch Rterm or RJ). Actually I observed strange behavior, when I try loading Rmpi directly I don't have any problem i.e.: library("Rmpi") mpi.spawn.Rslaves() 8 slaves are spawned successfully. 0 failed. master (rank 0, comm 1) of size 9 is running on: marcin-HP
2009 Mar 29
3
Eclipse and StatET Howto (also added Subversion, Rtools)
I recently got a RFC on Eclipse and StatET setup from a R-help user, so here it is. Note: there may be slight errors of omission in my directions as I am making these notes after I had a successful install. If you have questions post here. Setup tested with Eclipse 3.4.0 on XP 32-bit and Eclipse 3.4.2 on Vista 32-bit. R 2.9.0 alpha. Installing StatET: 1. Go to Help > Software Updates...
2010 Mar 11
1
Statet on Eclipse: ${project_path} is empty
Hello, I'm tryign to use Statet on Eclipse on my Kubuntu Karmic PC. I've set everything up and I can start the R configuration, but the working directory is set to my home directory. If I set the start in directory to ${worspace_loc}/${project_path} I can't start the console, with an error that project_path is empty. Am I doing something wrong. I feel that Eclipse and Statet
2008 Jul 30
2
Eclipse/Statet: How to set breakpoints
Hi, I'm using the IDE Eclipse with the Statet-Plugin to develop R-code. Is there a possibility to set breakpoints for debugging in R-script files (just like in Java-code)? Cheers, Eli
2010 Mar 11
1
Ubunut + Eclipse + StatET: Console terminates upon error
Dear List, I''m trying to set up Eclispe (3.5.1) with the StatET-Plugin (0.8.1) under Ubuntu (Karmic) and found it strange that my console terminates every time something in a script produces an arbitrary error (e.g. just calling a missing variable, trying to perform an illegal operation etc.). Can anyone tell me why this happens or even better how to fix this? Thanks a lot, Janko
2011 Nov 19
1
Eclipse StatET - create own code formatting
Hello, does anybody know whether it is possible to create its own code formatting rules? Defining rules under Eclipse -> Preferences -> R Code Formatting is so limited. Cheers, Syrvn -- View this message in context: http://r.789695.n4.nabble.com/Eclipse-StatET-create-own-code-formatting-tp4086386p4086386.html Sent from the R help mailing list archive at Nabble.com.
2007 Mar 06
1
R plug in for Eclipse
Hello, Is there any R plug-in available for Eclipse other than StatET? StatET doesn't seem to work with the latest release of Eclipse properly, i.e. syntax highlighting isn't enabled for R commands. I already contacted the author some time ago, but have not yet received a response. Would also be great if somebody could tell me whether they have the same problem. I already tried
2006 Mar 16
0
R, Eclipse and StatEt plugin under Linux
Hi I try to use the R plugin StatET 3.1-M2 (0.2.1) under eclipse 3.1.1 in Linux. Everything works fine, except of the integration of the R console into eclipse. On the StatET website (http://www.walware.de/goto/statet) it states: *** Do you know, how to start R inside Eclipse on Unix/Linux preventing the batch-modus, which parameters are useful? Let me know. *** and this is exactly the
2012 Dec 19
0
Visual Debugger para R con Eclipse+StatEt: ¿le funciona a alguien?
Hola: ¿Hay alguien que haya probado el ''visual debugger'' de Eclipse para R con StatEt (y le funcione, claro) ? Lo presentaron en las Jornadas UseR!2011, y en un correo posterior indicaron los pasos para usarlo... http://lists.r-forge.r-project.org/pipermail/statet-user/2011-August/000978.html Probé hace poco, y aunque consigo poner los breakpoints y demás, no consigo ver
2010 Jul 09
3
apply is slower than for loop?
I thought the "apply" functions are faster than for loops, but my most recent test shows that apply actually takes a significantly longer than a for loop. Am I missing something? It doesn't matter much if I do column wise calculations rather than row wise ## Example of how apply is SLOWER than for loop: #rm(list=ls()) ## DEFINE VARIABLES mu=0.05 ; sigma=0.20 ; dt=.25 ; T=50 ;
2011 Aug 29
3
replacing elements of a zoo object
Why doesn't this work? x = zoo(1:5, as.Date('2001-01-01')+1:5) x[as.Date('2001-01-05')] x[as.Date('2001-01-05')] = 0 x I think this is especially bad because it doesn't cause an error. It lets you do something to x, but then you can't see x again to see what it did. [[alternative HTML version deleted]]
2011 Dec 06
2
read.table performance
** Disclaimer: I'm looking for general suggestions ** I'm sorry, but can't send out the file I'm using, so there is no reproducible example. I'm using read.table and it's taking over 30 seconds to read a tiny file. The strange thing is that it takes roughly the same amount of time if the file is 100 times larger. After re-reviewing the data Import / Export manual I think
2010 Apr 19
2
How to pass a list of parameters into a function
Does anyone know how to pass a list of parameters into a function? for example: somefun=function(x1,x2,x3,x4,x5,x6,x7,x8,x9){ ans=x1+x2+x3+x4+x5+x6+x7+x8+x9 return(ans) } somefun(1,2,3,4,5,6,7,8,9) # I would like this to work: temp=c(x3=3,x4=4,x5=5,x6=6,x7=7,x8=8,x9=9) somefun(x1=1,x2=2,temp) # OR I would like this to work: temp=list(x3=3,x4=4,x5=5,x6=6,x7=7,x8=8,x9=9)
2011 Dec 05
1
using StatEt IDE for Eclipse
Hi, I'm trying to use StatEt IDE for Eclipse as my R editor, but I'm completely lost. I've read all I could find online, made apparently all I had to do (installing rj, configuraing StatEt, etc.) but still cannot make R running. Below is the error log file. Thank you so much for assistance. Matteo !ENTRY de.walware.statet.r.console.ui 1 0 2011-12-05 16:21:51.355 !MESSAGE
2011 Dec 07
1
RSPython installation
Does anyone know if Is there a way to manually install RSPython? I get this error when I try to run the script from my DOS prompt. V:\>R CMD INSTALL -c C:/Users/gene.leynes/Downloads/RSPython_0.7-1.tar.gz * installing to library 'C:/Users/gene.leynes/Documents/R/win-library/2.13' * installing *source* package 'RSPython' ... **********************************************
2011 Feb 23
4
The L Word
I've been wondering what L means in the R computing context, and was wondering if someone could point me to a reference where I could read about it, or tell me what it's called so that I can search for it myself. (L by itself is a little too general for a search term). I encounter it in strange places, most recently in the "save" documentation. save(..., list = character(0L),
2011 Sep 06
2
Possible to access a USB volume by name in windows
On the Mac it's pretty easy to get to a USB drive by name. For example the following command works if you have a USB drive named "MYUSB" setwd('/Volumes/MYUSB') Is there a way to do the same thing in Windows (without knowing the drive letter)? Thanks! [[alternative HTML version deleted]]
2011 Sep 26
4
Testing for arguments in a function
I don't understand how this function can subset by i when i is missing.... ## My function: myfun = function(vec, i){ ret = vec[i] ret } ## My data: i = 10 vec = 1:100 ## Expected input and behavior: myfun(vec, i) ## Missing an argument, but error is not caught! ## How is subsetting even possible here??? myfun(vec) Is there a way to check for missing function arguments, *and*