在服务器上运行 R 时,如何从 emacs ess 启动 x-window?

发布于 2024-10-01 20:30:49 字数 432 浏览 3 评论 0原文

我按照 ess 手册中的说明将 emacs-snapshot 与 ssh.el 包一起使用。

有几种方法可以打开 R 会话,但这就是我的做法:

  1. 打开 emacs
  2. C-x Cf /server:dir/file.R 这使我进入 ESS [S] 模式
  3. 输入 'plot(1)'
  4. Cc Cn to运行
  5. emacs 要求输入起始目录,我选择 /server:dir/
  6. 我希望弹出一个数字,但它不会。

在 shell 或 trapm 模式下使用 ess-remote 时,这也不起作用,但如果我将起始目录设置为本地桌面,它就会起作用。

非常感谢任何建议。我当前的解决方法是将文件打印为 pdf,然后在 DocView 模式下打开 pdf,但这需要一些额外的步骤,而且速度很慢。

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:

  1. open emacs
  2. C-x C-f /server:dir/file.R this puts me in ESS [S] mode
  3. Type 'plot(1)'
  4. C-c C-n to run
  5. emacs asks for starting directory, and I choose the /server:dir/
  6. I would like for a figure to pop up but it wont.

This also doesn't work when using ess-remote in shell or tramp mode, but it does work if I set the starting directory to my local desktop.

Any advice much appreciated. My current workaround is to print the file to pdf and then open pdf in DocView mode, but this takes a few extra steps and is slow.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

自我难过 2024-10-08 20:30:49

我以相反的方式执行此操作:

  • ssh -X some.server.com 通过 x11 转发连接到远程服务器。

  • emacsclient -nw 重新启动已在运行的 Emacs 会话

  • plot(cumsum(rnorm(100))) in R 像往常

一样然后绘图窗口出现在我通过 ssh 离开的最初的机器。

编辑:作为评论的后续内容:这适用于任何 emacs,无论是 emacs 还是 emacs-snapshot。很长一段时间我在 ~/.emacs 中使用 (server-start) 但现在我更喜欢(仅一次)lauch emacs --daemon 之后我可以通过 emacsclient (也作为 emacsclient-snapshot 存在)连接。我真的很喜欢这个——它在一个持久会话中为我提供了围绕 R 的 Emacs,我可以连接、断开连接和重新连接。

I do it the other way around:

  • ssh -X some.server.com to connect to a remote server with x11 forwarding.

  • emacsclient -nw to restart an Emacs session that is already running

  • plot(cumsum(rnorm(100))) in R as usual

Then the plot windows appears on the initial machine I ssh'ed away from.

Edit: As a follow-up to the comment: This works for any emacs, either emacs or emacs-snapshot. For a long time I used (server-start) in the ~/.emacs but now I prefer that (just once) lauch emacs --daemon after which I can then connect to via emacsclient (which also exists as emacsclient-snapshot). I really like this -- it gives me Emacs around R in a persistent session that I connect, disconnect and reconnect to.

你好,陌生人 2024-10-08 20:30:49

我选择了德克的答案,因为他为我指明了正确的方向,特别是降低了可视化数据所需的激活能量,但在这里我将详细介绍如何让它在我的桌面上工作。

1) 设置 ssh 密钥对(我之前已经这样做过,Ubuntu 的完整说明在这里)

mkdir ~/.ssh
chmod 700 ~/.ssh
ssh-keygen -t rsa
ssh-copy-id username@hostname

2) 在 ~/.ssh/config 中包含以下内容

Host any_server_nickname
HostName  hostname
User username
ForwardX11 yes

3) 在本地计算机上打开 emacs

4) Cx Cf

5) /any_server_nickname:dir/file.R 对于主目录中的文件或 /any_server_nickname:/path/to/file .R

6) 图(1)

7) Cx Cb 评估整个缓冲区。

替代文本

I selected Dirk's answer because he pointed me in the right direction, and especially for lowering the energy of activation required to visualize my data, but here I am going to give the details of how I got this to work on my desktop.

1) set ssh keypairs (I had previously done this, full instructions for Ubuntu here)

mkdir ~/.ssh
chmod 700 ~/.ssh
ssh-keygen -t rsa
ssh-copy-id username@hostname

2) include the following in ~/.ssh/config

Host any_server_nickname
HostName  hostname
User username
ForwardX11 yes

3) open emacs on local machine

4) C-x C-f

5) /any_server_nickname:dir/file.R for files in home directory or /any_server_nickname:/path/to/file.R

6) plot(1)

7) C-x C-b to evaluate entire buffer.

alt text

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文