2014-03-25 88 views
1

我是一個新手,所以忍受着我。我經歷了Paul E. Johnson網站上關於在Windows平臺上使用R和emacs的說明。我下載了R 3.0.3的32位和64位版本以及Goulet教授的Emacs-ESS編譯。但是當運行gnu emacs時,按鈕欄上不會出現R圖標。更重要的是,我試圖右鍵點擊一個R文件,並嘗試用runemacs.exe打開它,但那不起作用。 Windows拒絕顯示runemacs.exe作爲選項。 R雖然在自己的作品上運行良好。如果有幫助,R和Gnu emacs都存儲在程序文件中(不在程序文件x86中)。在R文件夾中還有R 3.0.3以及R 3.0.0的子文件夾。請幫忙!R emacs窗口

+0

我不知道這是什麼問題,因爲我從來沒有在Windows環境中使用R emacs。並沒有明確的方式來回答問題。但是如果你是R的新手,那麼我會強烈建議你使用RStudio而不是emacs。 RStudio是R的IDE,它有很多功能,可以幫助您在開始學習使用R. – kongo

回答

1

您是否從Emacs啓動了ESS?

M-x R 

此外,您安裝R的路徑是什麼?這可能是問題,您可能需要在Emacs中編輯配置文件。例如,在site-start.el文件中。

;; Path to R executable. Uncomment and edit as needed if R is 
;; installed in such an unusual place that ESS can't find it. (And 
;; then keep updating with each R update!) 
;(setq-default inferior-R-program-name 
;    "c:/program files/r/r-2.7.1/bin/rterm.exe") 

所以,你可能要去掉這一和:

(setq-default inferior-R-program-name 
       "c:/path/to/where/you/installed/r/r-3.0.3/bin/rterm.exe") 

這是古萊特包,此配置文件在網站上提到的。

EDITED:因爲我意識到我忽略了你最初使用過Goulet的包裝。