ESS (Emacs Speaks Statistics) is an emacs add-on for editing scripts and interacting with statistical programs such as R, Stata or SAS.

learn more… | top users | synonyms

1
vote
1answer
53 views

running R in emacs on LSF

I would like to run R in emacs using ESS. My R session runs interactively but is submitted to a different host using LSF. Is there a way to make this work? That is, R is not being run locally. ...
1
vote
1answer
43 views

Evaluating buffer until the cursor

I am trying to create a key binding for "Evaluate buffer till here" in Emacs & ESS, which is situated in ESS => ESS Eval menu. Most of the commands in that menu are listed in help files ...
1
vote
2answers
46 views

Input Chinese characters not correctly echoed in ESS

I had this weird encoding issue for my Emacs and R environment. Display of Chinese characters are all good with my .Rprofile setting Sys.setlocale("LC_ALL","zh_CN.utf-8"); except the echo of input ...
0
votes
0answers
39 views

emacs: expand autocomplete for R function to include namespace

Am using EMACS/ESS as editor for R. I find it helpful to refer to a function defined outside of base with it's relevant namespace; as well as being good practice in general, it seems to be necessary ...
2
votes
1answer
84 views

How can I use Emacs ESS mode with R markdown?

Is there a way to configure Emacs so that it recognizes (and allows execution of) R code chunks within R markdown (.Rmd) files similar to the way it recognizes code chunks in .Rnw (Sweave) or .org ...
1
vote
1answer
55 views

Emacs ess auto-complete

I am a R user, I want to use R in emacs. But, I am in trouble with customizing ess in emacs. I have installed the auto-complete packages and the latest ess in my emacs. But when I run r in emacs, the ...
3
votes
1answer
79 views

How to enable auto-complete-mode when I start R in Emacs?

In Emacs + ESS, I can start R console by M-x R Return On my system, auto-complete-mode isn't enabled by now. I have to M-x auto-complete-mode Return to enable it. Is there a way to enable it ...
0
votes
0answers
44 views

syntax highlighting in emacs with .Rnw files

When working with .Rnw files, emacs with ess highlights the R-code blocks in purple. This is great, but the issue I'm having is after the R-code, everything is still purple! Some people have said ...
0
votes
0answers
41 views

ess-toggle-underscore doesn't work

Normally, when using ESS, adding the (ess-toggle-underscore nil) line to the .emacs file stops the automatic conversion of underscores to <-. Recently this has stopped working and underscores are ...
0
votes
0answers
121 views

ggplot2 display a blank image window [closed]

I'm trying to plot the examples in "R Graphic Cookbook": library(ggplot2) library(gcookbook) library(plyr) ce <- ddply(cabbage_exp, "Date", transform, percent_weight = Weight / sum(Weight) * 100) ...
0
votes
0answers
56 views

Installing shiny package in R using ESS removed ESS

I installed the shiny library through Emacs ESS, and now my Emacs can't access ESS anymore. What could have happened? Even after closing/opening Emacs. 1) install.packages("shiny") 2) library(shiny) ...
2
votes
1answer
38 views

How do I get ESS to recognize a dynamic prompt in R?

I followed the suggestion here... R: Display a time clock in the R command line to make my R prompt display the last time I entered in a command. But now M-r and M-p are broken because ESS is no ...
2
votes
1answer
76 views

Knitting Beamer slides with Emacs-ESS (stop-on-error)

I am knitting the following file (note the eRRoR() function): \documentclass{beamer} <<setup, include=FALSE>>= opts_knit$set(stop_on_error=2L, message=FALSE) options(width=40) @ ...
2
votes
2answers
104 views

R emacs-ESS not plotting on mac

I have a new mac and have downloaded ESS-emacs and have been running R. But it does not produce any plots with plot() pie() or hist(). I have tried show(), X11() and pdf() but none of them work. The ...
0
votes
1answer
38 views

Why doesn't '??' run help.search() when using ESS?

On my windows machine at work, when I type ??topic in the R terminal using ESS, I don't get the expected result of help.search(topic), instead I get a new buffer titled *help[R](?topic)*, with ...
10
votes
6answers
335 views

Structuring a Statistical Analysis with R Using Emacs/ESS

I am looking for a way to structure my statistical analysis. I currently use Emacs/ESS and the analysis file turned out quite long. I have started to put parts of the code into sourceable functions in ...
0
votes
1answer
153 views

Why does the python interpreter not print input code and output in emacs python shell buffer for python-mode?

My current python setup in emacs is: (setq py-shell-name "ipython") ;; sudo pip install ipython (setq py-shell-name "/usr/local/bin/ipython") (setq py-force-py-shell-name-p t) (add-to-list 'load-path ...
2
votes
1answer
58 views

Start a named ESS R process from a function

I'm trying to create a small interactive elisp function in order to quickly display a layout suitable for answering a Stackoverflow question about R. The idea is to open a temporary R file, and launch ...
2
votes
0answers
69 views

Show progress message or bar when with download.file in Emacs ESS

The title should tell it all. R download.file() does not show progress status in Emacs ESS. Any workaround? Update As requested an example: download.file("http://path/to/file.zip", "myfile.zip", ...
0
votes
3answers
89 views

How to make the current prompt of R at the top of buffer in ESS just like Control + L in R console

I have tried to put the following in my .emacs file. (defun clear-shell () (interactive) (let ((old-max comint-buffer-maximum-size)) (setq comint-buffer-maximum-size 0) ...
1
vote
1answer
278 views

ess won't fully install ubuntu 12.04

The last time I ran sudo apt-get upgrade ess gave this error and now says its not fully installed. I checked and installed all dependencies and couldn't find any other reports of this issue. enabling ...
3
votes
0answers
73 views

ess-rdired: I get this error “no ESS process is associated with this buffer now”

To use ess-rdired to browse objects, I followed ESS mannual to add the following .emacs (autoload 'ess-rdired "ess-rdired" "View *R* objects in a dired-like buffer." t) Then use M-x ...
2
votes
1answer
62 views

ESS and RScript : Executing in style of `compile-dwim-run'

I just got ESS set up in EMACS (I'm a relative newbie in this area). I have figured out how to take an R script and fire up an interactive R shell and evaluate a whole buffer ("C-c C-b"). But I'd ...
2
votes
1answer
90 views

How to avoid ESS underscore automatic subsitution with '<-' when pasting text but keep it when writing an underscore

When using ESS under emacs for writing R code, is useful to have the default behavior os having '_' substituted by '<-' (inserting two consecutive '_' would insert the underscore itself). But when ...
2
votes
1answer
61 views

Emacs/ESS - Moving through iESS Buffer very slow

Moving within the iESS[R] buffer is painfully slow - I use Alt+p/Alt+n or Ctrl+p/Ctrl+n for this purpose. I do see a 'help' being displayed in the minibuffer when I try to traverse the iESS[R] buffer. ...
3
votes
2answers
141 views

Emacs ESS evaluating slower than normal R

Is ESS' R-mode also slower for you than just plain R? Mostly the text gets sent really slowly to the other buffer. Is this normal or is there something wrong with my setup? As suggested: ...
1
vote
1answer
67 views

Are there downsides with docstrings in R?

I do not like the automatic indentation of comments in ESS (Emacs Speaks Statistics) mode, because it is so far to the right. normalize <- function(values){ ...
4
votes
1answer
89 views

How can I automate these emacs ESS (ess-remote) commands?

I'm using a local emacs instance (aquamacs) to run R processes on a remote server, and I'd like to automate the process of connecting to my server. The process is as follows: [in emacs] M-x shell ...
8
votes
1answer
135 views

Return Emacs buffer focus to R after compiling with knitr

When compiling an *.Rnw file with the commands M-n r and M-n P my open R buffer is swapped for a buffer that appears to shows knitr compilation information. Is there a way to automatically switch back ...
1
vote
2answers
110 views

Emacs ESS Mode TAB stops indenting

I'm using Emacs 24 on Windows to write some R code. Up until about 30 minutes ago, whenever I would write a new function, ESS would automatically indent the lines following the function declaration ...
7
votes
1answer
219 views

Customizing the ESS environment for R

I am trying to optimize my ESS - R environment. So far I make use of the r-autoyas, I set intendation and stuff following style guides, in the mini-buffer there are eldoc hints for function arguments, ...
3
votes
2answers
83 views

emacs ess crashes when trying to access h_elp

My emacs/ess session crashes when I try to access help. This happens if I have two packages loaded with the same functions; for example: library(lubridate) library(data.table) ?month In Rgui ...
4
votes
2answers
154 views

changing indentation in emacs ess [closed]

I would like to know how can I change indentation in emacs ess. I generally like default one (ess-set-style 'C++ 'quiet) But sometimes it formats really weirdly. For example this is what I would like ...
3
votes
1answer
84 views

How can I specify the R version opened by ESS session in emacs?

When I want to open an R session in emacs, I use M-x R. However, our server has both R 2.12 in /usr/bin/R and R 2.15 in /usr/local/bin/R. Actually, if I ask whereis R, I get the following: $ ...
6
votes
2answers
96 views

How do I get my R buffer in emacs to occupy more horizontal space?

At the moment when I start up an ESS buffer (with M-x R) I get that the output of my commands only occupies about 60ish characters in column width (particularly when displaying data frames with long ...
1
vote
1answer
105 views

Autoload Emacs ESS

How to autoload ESS in Emacs (for Windows)? It always starts up with an opened ESS buffer, and I suspect loading ESS slows down loading emacs by approximately 1 second (using timer).
0
votes
2answers
107 views

Emacs ESS keybinding “less than” dash

How to efficiently program in Emacs ESS-mode the key "<" "[less than]" to "<- " "[less than][dash][space]" Just like the MacOS version of R utilizes.
0
votes
2answers
139 views

Notification when R finishes running? [duplicate]

Possible Duplicate: Is there a way to make R beep/play a sound at the end of a script? While waiting for R to finish a 5-10 minute job, I might start writing (at best), although I would ...
1
vote
1answer
599 views

ESS + AUCTeX + Sweave. SyncteX integration from .Rnw <-> pdfviewer?

I'm remodeling my toolchain away from R + TeXShop to what I hope is a more efficient Sweave -> LaTeX -> SyncteX -> pdfview (skim) through emacs (Aquamacs, to be specific) AUCTeX-mode (with ...
5
votes
4answers
453 views

How to access a bash environment variable from within R in emacs-ess

In my .bashrc, I have the line: export SETTINGS=/home/user/settings.xml If I load R in bash, I can access this variable using the Sys.getenv function: Sys.getenv("SETTINGS") ...
2
votes
0answers
98 views

R: ESS fails to deal with Thai script variable, but RGui is fine?

I have some code that scrapes some data from a website that happens to be in Thai script. As part of the project I need to replace some of the Thai text. A small example follows: thaidf <- ...
0
votes
0answers
28 views

Emacs ESS to read headers

How to get ESS-rdired to read the first few rows (like using head(data table)), instead of viewing the entire data frame in *R view*.
3
votes
1answer
78 views

ESS and EC2 error “R process has died”

I am attempting to use ESS with EC2. I start an instance in the EC2 console and then ssh into the instance. M-x shell cd ~/.ec2 ssh -i zmjones.pem root@ec2-23-22-122-35.compute-1.amazonaws.com Then ...
4
votes
1answer
142 views

r-autoyas in Emacs

I am trying to get r-autoyas to work on Emacs 23.3.1 I have installed yasnippet and it works fine on its own. For eg: TAB after 'for' in c++ mode auto expands as it should. I then went on the get ...
6
votes
1answer
136 views

Changing background color of inferior-ess-mode in Emacs

As I'm working a lot with Latex and Sweave/knitr, I wondered if there's a possibility to change the background color of different modes in Emacs, e.g. change the background color of inferior-ess-mode ...
3
votes
1answer
102 views

ESS cannot find documentations in specified packages

I am using ESS(12.04), emacs(23.3.1) and R(2.14.1). It works very well except that I cannot open a help from R if the function is inside an package. For example: In R(iESS mode) > ?ls I will ...
4
votes
3answers
120 views

How to specify the package when looking up a help reference page for a function?

How does one look up the help manual page for a function and specify the package in R? For example, count appears in both seqinr and plyr. If I want to look up count in plyr, what's the command? I've ...
2
votes
1answer
135 views

Emacs + R: too long buffer name */usr/local/bin/R* for R buffers

I work with Emacs 24 (Emacs-pretest-24.0.91-universal-10.6.7 from http://emacsformacosx.com/builds) on Mac OS X 10.7.3 with R 2.15. When I open a new R buffer, the buffer name is */usr/local/bin/R*. ...
8
votes
1answer
488 views

EMACS folding/unfolding R code

Is there an Emacs minor-mode (or piece of elisp code) that lets you selectively hide/show environments while in Sweave (Sweave = R + LaTeX)? For instance, I would like to move to the beginning of a ...
2
votes
0answers
80 views

Modify Emacs tab behavior with Sweave documents

In Sweave mode pressing tab doesn't move the cursor and kills my auto-complete options (when I hit tab to complete the code the completion disappears as opposed to completing the snippet). If I ...

1 2 3