install.packages(c("Ryacas))
用于在R中安装库。没有在安装中发布,md5没问题。安装了所有必要的包。
library(Ryacas)
产量
Loading required package: XML
x <- Sym("x")
Limit(sin(x)/x, x, 0)
产生
[1] "Starting Yacas!"
Error in socketConnection(host = "127.0.0.1", port = 9734, server = FALSE, :
cannot open the connection
In addition: Warning message:
In socketConnection(host = "127.0.0.1", port = 9734, server = FALSE, :
127.0.0.1:9734 cannot be opened
在Windows XP上,使用标准R,通过Rstudio前端,我需要做什么才能运行这个库?
顺便说一句,为什么这些端口需要打开?
答案 0 :(得分:3)
Ryacas是(quoting)
yacas计算机代数系统的接口。
所以它希望yacas
安装并启动并运行。它不会仅通过yacas
安装R
本身所需的R
库。
该库提供了一个在您的计算机上安装yacas
的脚本;它是名称yacasInstall
(参见the manual的第9页)
运行?yacas
应该会为您提供更多信息。
另外,不要忘记在yacas
安装的目录中运行yacas --server 9734
来实际启动yacas
。