Showing posts with label emacs. Show all posts
Showing posts with label emacs. Show all posts

2011/06/17

Installing emacs-w3m in emacs 23.1.1

step.1 install w3m-el in my emacs23.1

> cvs -d :pserver:anonymous@cvs.namazu.org:/storage/cvsroot login
> cvs -d :pserver:anonymous@cvs.namazu.org:/storage/cvsroot co emacs-w3m
> cd emacs-w3m
> autoconf
> ./configure
> make
> sudo make install

step.2 configure ~/.emacs.d/init.el
add below line in the end of you init.el or .emacs
(require 'w3m-load)

2011/06/05

Hello, ess (1st contact)

I tried to use emacs + ess (Emacs Speaks Statistics) to program R code quickly.

INSTALL
  1. aptitude install ess
  2. echo "(require 'ess-site)" >> ~/.emacs.d/init.el
USAGE
  1. boot emacs
  2. M-x 2 => divide emacs buffer
  3. M-x R => boot R-console
SAMPLE ESS COMMANDS
  • C-c C-j: execute current line
  • C-c M-j: execute current line and move to end of R-console
  • C-c C-b: execute current buffer
  • C-c M-b: execute current buffer and move to end of R-console
  • C-c C-r: execute current region
  • C-c M-r: execute current region and move to end of R-console

ESS COMMAND REFERENCE (more ess command is introduced in RjpWiki.)
Command of ess (by RjpWiki)

100