Matthew Fidler | 9 Feb 18:49
Picon

Drag and drop files into ESS buffers

All,

I have created a ess drag and drop component. If you drag a CSV into an R
buffer, it writes the appropriate code to read the file.  It is
customizable to other ESS languages, dialects, and files.

Eventually I may put this on some repo somewhere, but currently it is at:

https://github.com/mlf176f2/ess-dnd

Matt.

	[[alternative HTML version deleted]]

______________________________________________
ESS-help <at> r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/ess-help

Vitalie Spinu | 9 Feb 17:29
Picon

Re: public git mirror?

>>>> Aleksandar Blagotić <aca.blagotic <at> gmail.com>
>>>> on Thu, 9 Feb 2012 17:01:33 +0100 wrote:

  AB> How about: emacs-ess (or vice versa)? That's the name of ESS package in
  AB> ArchLinux.

(...)

On debian it's "ess". Who else stays for emacs-ess?

I am slightly more inclined towards the explicit name, even if it's
long. It will come clearly in searches both in google and github.

The main page will be

https://github.com/Emacs-Speaks-Statistics

versus 

https://github.com/emacs-ess

Vitalie.

  >> An alternative would be the full "Emacs-Speaks-Statistics". If nobody
  >> comes with a better name I will settle on that.
  >> 
  >> Vitalie.

______________________________________________
ESS-help <at> r-project.org mailing list
(Continue reading)

Vitalie Spinu | 8 Feb 19:31
Picon

Re: public git mirror?


>>>> Martin Maechler <maechler <at> stat.math.ethz.ch>
>>>> on Mon, 23 Jan 2012 16:13:38 +0100 wrote:

  >>>>>> Rodney Sparapani <rsparapa <at> mcw.edu>
  >>>>>> on Mon, 23 Jan 2012 09:02:43 -0600 writes:

  >> Aleksandar Blagotić wrote:
  >>> IMO, it would gain more public attention if it was hosted
  >>> on GitHub. I'd certainly like to see ESS there, as both
  >>> developers and users could easily report/fix bugs, thus
  >>> making ESS even more cooler. GitHub is far form being
  >>> only a free git repo service. It has awesome
  >>> collaboration tools!
  >>> 
  >>> aL3xa
  >>> 

  >> git is designed for a very decentralized development
  >> philosophy.  We don't have enough ESS developers where it
  >> would be appealing to move to git IMHO.  

  MM> I entirely agree.
  MM> Also the drawback that you need funny stamps etc for all the
  MM> branches is really an extra complication which I would not like
  MM> compared to simple revision numbers.

It's actually a two-way path, we also don't have enough developers
because of the rigid development system. Git encourages and is all about
branching. On GitHub forking and pull requests are one click away.  Very
(Continue reading)

Joan-Josep Vallbé | 6 Feb 13:06
Gravatar

Re: ESS-help Digest, Vol 108, Issue 3

Hi Marta

I do work with Ubuntu and use emacs + R without any problem, as yours 
should do. Have you installed ESS correctly? (Try

sudo apt-get install ess

Then try to paste the following code in your .emacs file (it should be 
in your home directory; Control+h will allow you to see these hidden 
files), restart emacs and open an R session. The code also contains code 
to work with Rsweave to combine R and LaTeX:

(require 'ess-site)
(require 'ess-eldoc)
(setq TeX-file-extensions
       '("Snw" "Rnw" "nw" "tex" "sty" "cls" "ltx" "texi" "texinfo"))
(add-to-list 'auto-mode-alist '("\\.Rnw\\'" . Rnw-mode))
(add-to-list 'auto-mode-alist '("\\.Snw\\'" . Snw-mode))
(add-hook 'Rnw-mode-hook
  (lambda ()
   (add-to-list 'TeX-expand-list '("%rnw" file "Rnw" t) t)
   (add-to-list 'TeX-command-list
    '("Stangle" "R CMD Stangle %rnw"
      TeX-run-command nil (latex-mode) :help "Run Stangle") t)
   (add-to-list 'TeX-command-list
    '("Sweave" "R CMD Sweave %rnw"
      TeX-run-command nil (latex-mode) :help "Run Sweave") t)
   (add-to-list 'TeX-command-list
  '("LatexSweave" "%l \"%(mode) \\input{%s}\""
;  '("LatexSweave" "%l %(mode) %s"
(Continue reading)

Marta Gomez | 5 Feb 13:02
Picon
Favicon
Gravatar

Emacs and R in Ubuntu 10.10

To whom it may concern,

I am trying to set up Emacs so that it sends my script to the R console 
instead of running R commander; but I seem to keep getting error of
all sorts, and I can't do some of the steps that I see on the web.
Please could you tell me (in as simple terms as possible in case maybe I missed
something obvious and I can't see it) how to go about "synchronizing" R
with Emacs? 

Thanks for the help!
Marta
	[[alternative HTML version deleted]]

______________________________________________
ESS-help <at> r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/ess-help

Michael Cho | 31 Jan 21:23
Picon
Gravatar

reverting to latex mode, indentation issues with .rnw files

Hi,

Having issues with ESS, where in an Sweave (rnw file) no longer indents
code chunks properly.
The default behavior is to tab in the first line of code, then thereafter
generally left aligns everything.

Recently upgraded to ESS 5.14 but it initially worked fine and does not
appear to improve when I revert to an older version.
Any thoughts?

Michael

	[[alternative HTML version deleted]]

______________________________________________
ESS-help <at> r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/ess-help

Mathieu Basille | 30 Jan 18:40
Gravatar

Roxygen: arbitrary sections (@section)

Hello,

I'm new to the use of Roxygen with Emacs (actually new to writing 
documentation at all!), so please apologize if it is a dumb question. I'd 
like to add non-standard sections associated to the documentation. Using 
the example of ESS doc [1], say I'd like to add a section 'Bli' with the 
content 'blabla'. The Roxygen manual [2] recommend to use:

"@section Name: contents Use to add to an arbitrary section to the 
documentation. The name of the section will be the content before the first 
colon, and the contents will be everything after the colon."

Let's do so:

##' Description of the function
##'
##' Further details about this function
##' @title A title
##' @param me all parameters must be listed and documented
##' @return Description of the return value
##' @author The author
##' @section Bli: blabla
myfun <- function(me)
     cat("Hello", me, "\n")

Previewing the Rd file (C-c C-e C-r) results in:

Warning in parse.warning(key, "is an unknown key") :
   @section is an unknown key.
\name{myfun}
(Continue reading)

Stephen Eglen | 29 Jan 23:19
Picon
Picon
Favicon

Emacs 23.4; Emacs 24.0.93

For those of you who like to keep up to date with Emacs, Emacs 23.4 (a
relatively minor bug fix release, but with a security flaw in EDE) and
Emacs 24.0.93 pretest have been released.

http://lists.gnu.org/archive/html/info-gnu-emacs/2012-01/msg00000.html

ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-24.0.93.tar.gz
Stephen

______________________________________________
ESS-help <at> r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/ess-help

Serdar | 24 Jan 20:07
Picon
Gravatar

Re: ESS-help Digest, Vol 107, Issue 21

On 2012-01-24 12.00, ess-help-request <at> r-project.org wrote:
> Send ESS-help mailing list submissions to
> 	ess-help <at> r-project.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> 	https://stat.ethz.ch/mailman/listinfo/ess-help
> or, via email, send a message with subject or body 'help' to
> 	ess-help-request <at> r-project.org
>
> You can reach the person managing the list at
> 	ess-help-owner <at> r-project.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of ESS-help digest..."
>
>
> Today's Topics:
>
>     1. Re:  Integration of Sweave R and ESS (Rodney Sparapani)
>     2. Re:  Automatic insertion of space after comma in iESS mode
>        (Vitalie Spinu)
>     3. Re:  ess-library or ess-display-help-on-object do not work
>        (properly) (Vitalie Spinu)
>     4. Re:  Automatic insertion of space after comma in iESS mode
>        (Aleksandar Blagoti?)
>     5. Re:  Automatic insertion of space after comma in iESS mode
>        (Andreas Leha)
>     6. Re:  Automatic insertion of space after comma in iESS mode
>        (Aleksandar Blagoti?)
>
(Continue reading)

Ken Williams | 24 Jan 16:40

Current version?

I'm a little confused - I see that http://ess.r-project.org/Manual/ess.html and
http://svn.r-project.org/ESS/trunk/ANNOUNCE talk about ESS version 5.15, but
http://ess.r-project.org/ and the download links thereon still reference 5.14.  Is the main site just
slow to update, or has 5.15 not been officially released?

In fact, the release notes in http://svn.r-project.org/ESS/trunk/ANNOUNCE skip right over version
5.14, not sure what that's about.

If 5.15 is released, where can I get it?

If 5.15 is still unreleased, I'm interested in trying it.  If I install it manually (under Cygwin) and find
serious problems, can I regress to 5.14 just by installing 5.14 manually on top of it?

Thanks.

--
Ken Williams, Senior Research Scientist
WindLogics
http://windlogics.com

________________________________
CONFIDENTIALITY NOTICE: This e-mail message is for the s...{{dropped:10}}

______________________________________________
ESS-help <at> r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/ess-help

Serdar | 23 Jan 20:27
Picon
Gravatar

Re: ESS-help Digest, Vol 107, Issue 19

On 2012-01-23 16.39, ess-help-request <at> r-project.org wrote:
> Send ESS-help mailing list submissions to
> 	ess-help <at> r-project.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> 	https://stat.ethz.ch/mailman/listinfo/ess-help
> or, via email, send a message with subject or body 'help' to
> 	ess-help-request <at> r-project.org
>
> You can reach the person managing the list at
> 	ess-help-owner <at> r-project.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of ESS-help digest..."
>
>
> Today's Topics:
>
>     1.  Automatic insertion of space after comma in iESS mode
>        (Aleksandar Blagoti?)
>     2. Re:  Integration of Sweave R and ESS (Mathieu Basille)
>     3. Re:  Automatic insertion of space after comma in iESS mode
>        (Vitalie Spinu)
>     4. Re:  public git mirror? (Rodney Sparapani)
>     5. Re:  public git mirror? (Rodney Sparapani)
>     6. Re:  Automatic insertion of space after comma in iESS mode
>        (Richard M. Heiberger)
>     7. Re:  Automatic insertion of space after comma in iESS mode
>        (Aleksandar Blagoti?)
>     8. Re:  Automatic insertion of space after comma in iESS mode
(Continue reading)


Gmane