简体   繁体   English

无法安装R包的最新版本

[英]Cannot install the latest version of an R package

I am interested in using ClickStream R package, particularly version 1.3.0. 我对使用ClickStream R软件包特别是1.3.0版感兴趣。 I have installed it with: 我已经安装了:

install.packages("clickstream")

However, the version that was downloaded is 1.1.9, which is missing several important functions. 但是,下载的版本是1.1.9,缺少几个重要功能。 I have tried to updated the package within R-studio using Tools -> Check for Package Updates , but it says all packages are up to date. 我尝试使用Tools -> Check for Package Updates来更新R-studio Tools -> Check for Package Updates ,但它说所有软件包都是最新的。 The version of R-studio is 1.1.453. R-studio的版本是1.1.453。

I just cannot figure out what I am supposed to do to automatically download the latest version of this package. 我只是不知道应该怎么做才能自动下载此软件包的最新版本。 Any help? 有什么帮助吗?

You are probably attempting to install from a repository that is out-of-date. 您可能正在尝试从过期的存储库进行安装。 Going to the CRAN page for clickstream we see that it has version 1.3.0 for all the major branches of R. There was a time when installing RStudio resulted in getting an out-of-date version of R, which then required that one install an up-to-date version of R. I think they also had a "matching" repo for that version so you wouldn't get a warning message: 转到CRAN页面进行点击流,我们看到它具有R的所有主要分支的1.3.0版本。安装RStudio曾有一段时间导致获得过时的R版本,然后需要进行一次安装。 R的最新版本。我认为他们也有该版本的“匹配”存储库,因此您不会收到警告消息:

# Check your R version
R.version$version.string
#[1] "R version 3.5.1 (2018-07-02)"          #result if all is well

URL for CRAN page
https://cran.r-project.org/web/packages/clickstream/index.html

It has several dependencies: 它具有几个依赖性:

Depends:    R (≥ 3.0.1), methods, igraph, stats, utils, reshape2, data.table, MASS
Imports:    plyr, Rsolnp, arules, linprog, ggplot2, ClickClust, parallel

You can figure out where you are getting packages with: 您可以使用以下方法弄清楚从何处获取软件包:

options()$repos
                        CRAN 
"http://cloud.r-project.org" 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM