我安装umap-learn
并mac OS
尝试使用此处解释的方式在r markdown
文件中使用它:rPython
http://blog.schochastics.net/post/using-umap-in-r-with-rpython/#fn1
但是当我运行以下代码时:
```{r}
umap <- function(x,n_neighbors=10,min_dist=0.1,metric="euclidean"){
x <- as.matrix(x)
colnames(x) <- NULL
rPython::python.exec( c( "def umap(data,n,mdist,metric):",
"\timport umap" ,
"\timport numpy",
"\tembedding = umap.UMAP(n_neighbors=n,min_dist=mdist,metric=metric).fit_transform(data)",
"\tres = embedding.tolist()",
"\treturn res"))
res <- rPython::python.call( "umap", x,n_neighbors,min_dist,metric)
do.call("rbind",res)
}
data(iris)
res <- umap(iris[,1:4])
```
我得到错误:
python.exec(python.command) 中的错误:没有名为 umap 的模块
所以,显然Rstudio
没有看到umap
。我检查了该软件包是由以下人员安装的conda list
:
umap-learn 0.2.3 py36_0 conda-forge
我怎么能解决这个问题?
更新
python的版本错误,所以我添加.Rprofile
并使其指向正确的版本,但是错误仍然存在。
system("python --version")
Python 3.6.5 :: Anaconda, Inc.
更新
更详细的错误(堆栈跟踪):
Error in python.exec(python.command) : No module named umap
4.stop(ret$error.desc)
3.python.exec(python.command)
2.rPython::python.call("umap", x, n_neighbors, min_dist, metric)
1.umap(iris[, 1:4])