Tagged Questions

14
votes
6answers
2k views

Recommendations for developing Sweave documents

I'm looking to streamline my Sweave document creation, and I'd like to hear about people's current setups. I feel like the holy grail goes something like this: Editing Rnw code on one half of the ...
11
votes
3answers
353 views

Is it possible to get code completion for R in Emacs ESS similar to what is available in Rstudio?

Rstudio has a great code completion feature. It provides a quick view of functions that start with a given string, as well as function and parameter definitions. ESS is powerful enough, familiar to ...
11
votes
3answers
496 views

How can I background the R process in ESS / Emacs?

I often run long R scripts when I start my R environment. I would like to be able to load / run the R script in Emacs / ESS and continue other work in another buffer. When I press C-g or C-c C-c the ...
8
votes
2answers
221 views

Make Emacs ESS follow R style guide

I've been using Emacs/ESS for quite a while, and I'm familiar with Hadley's R style recommendations. I'd like to follow these conventions in ESS, like those nice spaces around operators, space after ...
8
votes
1answer
262 views

Could Emacs Speaks Statistics loop through a R for loop like a real debugger?

I am a happy user of ESS for coding and debugging R code. I have found a elusive bug recently deeply inside several for loops and ifs structures. Is there any way of having ESS selectively travel the ...
8
votes
3answers
1k views

Useful keyboard shortcuts and tips for ESS/R

I would like to ask regular ESS/R users what key bindings do they use frequently and tips on using ESS/R.
7
votes
2answers
496 views

Emacs autocomplete-mode extension for ESS and R

Is there an R-extension to Emacs autocomplete-mode that can be used with ESS? If the extension doesn't exist I'd also appreciate any hints for writing one!
7
votes
3answers
975 views

ESS workflow for R project/package development

Can anyone share his experience on workflow for R peject development under ESS? I tried several times to learn emacs but I have not get it yet. I can understand ESS as an editor, but is there a ...
6
votes
1answer
238 views

How can I switch between R sessions in emacs-ess?

I have two sessions open in Emacs-ESS: one on my desktop and one on a server using tramp. How can I tell ESS which session to use?
6
votes
2answers
517 views

Asking ESS/R users for suggestions for elisp codes in .emacs file

I believe that not all R users know elisp. It would be nice if ESS users could share their code in their .emacs file here. Well commented code would be particularly useful. Hope this will promote the ...
5
votes
1answer
81 views

Fix undesirable EMACS tabbing behavior in ESS/Stata

ESS/Stata mode in emacs incorrectly indents lines that follow lines ending in operators. It seems to incorrectly interpret these lines as multiline commands. For example: gen foo = 1 /* generate ...
5
votes
2answers
344 views

How can I launch an x-window from emacs ess when running R on a server?

I am using emacs-snapshot with the ssh.el package, following the instructions from the ess manual. There are a few ways to open an R session, but this is how I do it: open emacs C-x C-f ...
5
votes
2answers
295 views

Refactoring R code using ESS/R

I would like to know if it is possible to refactor R code in ESS. Using search and replace in Emacs does not seem to be a good alternative to it.
4
votes
1answer
108 views

GNUEmacs/ESS/Latex/Sweave: text displays differently when cursor is in latex code or in R code

When I scroll through an Sweave document (Rnw) with latex and R code, the text jumps around when the mode changes between Latex and ESS. The two modes disagree how text should be wrapped. Moreover, ...
4
votes
1answer
182 views

ESS to call different installations of R

I am not sure if this has already been answered here on stack-overflow. I had Emacs-ESS installed on my Unix machine and when ever I start up emacs, particular version of R gets loaded. I now have ...
4
votes
2answers
148 views

How can I get Emacs ess to recognize a query string (within quotes) as code?

Background I have a function dbquery that simplifies the process of querying a MySQL database from within R. dbquery <- function(querystring) { dvr <- dbDriver("MySQL") con <- ...
4
votes
2answers
251 views

Emacs ESS version of Clear Console

Is there an ESS version of the Clear Console command that can be found in the RGui(Ctrl-L)? I want to have a blank * R * buffer.
4
votes
2answers
982 views

ESS/AucTeX/Sweave integration

I'm using GNU/Linux distro (Arch, if that's relevant), Emacs v23.2.1, ESS v5.9 and AucTeX v11.86. I want to setup AucTeX to recognize .Rnw files, so I can run LaTeX on .Rnw files with C-c C-c and get ...
4
votes
2answers
203 views

How to turn off auto replacement in Emacs Speaks Statistics for R

In Emacs Speaks Statistics for R, how can the auto replacement of "_" with "<-" be turned off?
4
votes
5answers
528 views

Is there an Emacs mode for Rscript?

Is there any usable emacs mode for Rscript? (Rscript is the script front-end for the R language.) If I type this: #!/usr/bin/Rscript print(commandArgs(TRUE)) and do indent in the ESS R-mode it ...
3
votes
2answers
133 views

Emacs+ESS+R: How to have help page open in new buffer

Currently I have set options(help_type="text") and getOption("help_type") returns "text". Not sure why but R still opens a new browser window or tab when I type ?par in the inferior ESS (iESS) buffer. ...
3
votes
1answer
71 views

Left justified comments for ESS

When I use C-M-\ (with emacs and ESS) to format my R code, it right justifies my comments. For example, it changes: #This is a comment x=5 to #This is a comment x=5 How do ...
3
votes
1answer
277 views

How to stop emacs from replacing underbar with <- in ess-mode

ess-mode is "Emacs speaks statistics." This mode is useful for editing programs for R or Splus (two separate statistics packages). In my buffer, when ever I type '_' the character is replaced with ...
3
votes
3answers
571 views

Emacs ESS: Eval region vs. source()

I love the Emacs ESS combination. I love sending lines, functions, regions, and buffers of code to the command line for evaluation without using the mouse. However, I've noticed that the Eval ...
2
votes
2answers
50 views

default split window layout

I use aquamacs 90% of the time to edit R files with ESS (Emacs Speaks Statistics). In this mode, I find it indispensable to have a split window, C-x 3 C-x 2, such that I can view simultaneously the ...
2
votes
2answers
147 views

Emacs, R, Org-mode: how to enable automatic switch to ESS-mode within R code blocks?

When using R code chunks in an .Rnw document, the emacs buffer automatically detects that the cursor is within a code chunk (i.e. within <<>> and @), and switches to ESS-mode -- this is ...
2
votes
2answers
127 views

system(): why do I not have the same permissions when using R in EMACS as I do in the bash terminal?

update: the error only occurs when logged into R from within emacs what works: When I ssh into a remote server and run $ ./foo.rb from the bash shell, it works. Furthermore, if I launch R and ...
2
votes
2answers
126 views

ESS and rpy2 sharing R process in Emacs

I am a fairly new user of R and have started using Emacs Speaks Statistics (ESS). I also use rpy2 (a python interface to R) where I can start an R-process in my ipython shell running in Emacs. Is it ...
2
votes
2answers
358 views

Pop-up windows in R & Emacs

I am using ESS in order to stay in Emacs when working with R. Whenever I create a plot a new pop-up appears with the graph. This new window seems to be a part of the R process called inside Emacs. As ...
2
votes
2answers
151 views

How do I rename R sessions in ESS?

I previously asked how to switch R sessions in ESS, and the use of C-x C-s has sped up my workflow greatly. However, if I have multiple R sessions (even as few as 3), it can be difficult to remember ...
2
votes
3answers
183 views

How do I identify which Sweave code chunk gives an error?

When running Sweave from emacs-ess, errors are provided with a code chunk number. Is there an easy way to navigate among the code chunks by number? Otherwise, they are difficult to identify.
2
votes
1answer
127 views

ESS: ess-request-a-process defaults to “S”

Quite often I find myself with bunch of R processes running in ESS buffers. There's a convenient Lisp function ess-request-a-process that asks for R process, and brings it to front. The only downside ...
2
votes
1answer
213 views

is there a way to get the colour theme from the R GUI into Emacs?

I find it hard to sort through all the messages in the R frame(?) in emacs, and I was wondering if it'll be easy to change the colours so that it looks more like the R GUI. Thanks
2
votes
2answers
213 views

How to indent a buffer in ESS?

ESS allows us to indent a line and an expression. Is there a key binding for indenting a buffer? If not, can we create it?
1
vote
1answer
51 views

R: debugging code from emacs using ess-tracebug?

I want to use interactive debugging of R code in emacs, and found about ess-tracebug, but can't get it to work. I did the following: Installed ess-tracebug Started execution of an R script with ESS ...
1
vote
2answers
228 views

Is there a way to install R packages using emacs?

I am using ESS, but every time I need to install a new package I have to use R gui. Isn't there a way to do this without leaving emacs?
1
vote
2answers
224 views

user-input and ESS

When you ask ESS to evaluate the following from a buffer (C-c, C-b, or similar) par(ask=TRUE) plot(1,1) plot(2,1) The interpreter goes into a infinite loop because ESS starts the R session with the ...
1
vote
1answer
151 views

How can I run R interactively on a slave node, from emacs running on the head node?

Is there a way to start run R interactively on a slave node? Although we can login to the server using qlogin, this does not allow us to launch emacs + ess, which runs on the head node. Thanks! as ...
1
vote
1answer
179 views

Double prompt and garbled R help with remote R on WinXP emacs

I have installed a modified Emacs version for Windows XP from Vincent Goulet and I want to run and edit R scripts contained on a remote Unix server using ess-remote. After a lot of searching I am able ...
1
vote
2answers
406 views

Emacs, ESS, R -How did i do this?

http://picasaweb.google.com/lh/photo/F-p2qK3itxJsgj1tLLGsow?feat=directlink If you look at the picture, theres this usage bit from the R help files at the bottom in the minbuffer. howd i do that? it ...
1
vote
1answer
140 views

Can ECB be restricted to “take over” only the current buffer when it's activated?

From the get go: sorry if I'm not using the proper emacs terminology -- I'm relatively wet behind the ears in the emacs world. Most of my work in emacs is for programming R, and I'm using ESS and ECB ...
1
vote
1answer
395 views

In ESS/Emacs, how can I get the R process buffer to scroll to the bottom after a C-c C-j or C-c C-r

In ESS when I am evaluating chunks of code in a .R file using C-c C-j or C-c C-r (to send the line or region to a running R process), how can I get the R buffer to scroll down automatically, such that ...
1
vote
1answer
323 views

Enable scratch buffer to execute R code in emacs-ess

I have switched to using emacs-ess for my R code development and it is working great. I would like to be able to write some small R code I am using for debugging my R script into the scratch buffer, ...
1
vote
1answer
489 views

Emacs - help() output in web-browser

I started using Emacs (ESS) as a default R editor (yes, @Dirk, as you've said, I want ESS), and I must admit it's by far the best R editor I've been using so far. However, I cannot manage to get an ...
1
vote
2answers
200 views

Pipe ESS to terminal outside of Emacs?

I'm not sure if this is possible, but does anyone know if I can pipe ESS commands (i.e. evaluate region) to a R process running outside of Emacs? The Emacs terminal hangs up a bit (more often than ...
0
votes
0answers
108 views

R: how to change output width in ESS? [closed]

Possible Duplicate: How to increase the number of columns using R in Linux R output in ESS is wrapped to fit certain width. There must be a parameter to control this. I would like to set it ...
0
votes
1answer
52 views

Emacs+ESS idle time print

How can I make Emacs execute something like (ess-eval-linewise "cat(date(), '\\n')" t nil nil nil) each time ess is running and Emacs has been idle for a certain amount of time and somewhere around ...
0
votes
1answer
137 views

editing Rnw in Emacs, gets confused if in math mode or not

When editing .Rnw files with emacs, sometimes it gets confused as to if I am in math mode or not. Then, the syntax highlighting gets messed up, and C-f-i inserts \textit{} and \mathit{} opposite to ...