Closed. This question is opinion-based 。它目前不接受答案。












想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文来回答。

5年前关闭。



Improve this question




转到链接:

https://cran.r-project.org/web/packages/epicalc/index.html

您将获得以下消息:
Package ‘epicalc’ was removed from the CRAN repository.

Formerly available versions can be obtained from the archive.

Archived on 2015-05-12 as requested by the maintainer <[email protected]>.

但没有给出进一步的解释。这似乎是一个开发良好且有用的软件包,为什么它被删除了?

最佳答案

看来epicalc中的大多数资料已移至epiDisplay中。

epiDisplay package information 说:



(尽管它没有提供链接)。

devtools::install_version("epicalc",version="2.15.1.0")
install.packages("epiDisplay")
library("epicalc")
library("epiDisplay")
c1 <- ls("package:epicalc")
d1 <- ls("package:epiDisplay")

epicalc 但不是 epiDisplay 中:
setdiff(c1,d1)
##  [1] "addMissingRecords" "adjust"            "auc"
##  [4] "be2ad"             "detachAllData"     "expand"
##  [7] "fillin"            "keepData"          "label.var"
## [10] "lagVar"            "markVisits"        "merge.lab"
## [13] "pack"              "print.summ"        "recode"
## [16] "recode.default"    "recode.is.na"      "ren"
## [19] "rename"            "rename.default"    "rename.pattern"
## [22] "rename.var"        "sortBy"            "tally.events"
## [25] "unclassDataframe"  "use"               "zap"

epiDisplay 但不是 epicalc 中:
setdiff(d1,c1)
## [1] "print.summ.data.frame" "print.summ.default"    "summ.data.frame"
## [4] "summ.default"          "summ.factor"           "summ.logical"

编辑:

the author of epicalc :



他们接着说:

关于r - 为什么将 'epicalc'软件包从CRAN中删除?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32316360/

10-12 17:16