Help me use package DCchoice

I installed package DCchoice in R 3.6.1 but when I use this package, It noted:
"> library(DCchoice)
Loading required package: interval
Error: package ‘Icens’ required by ‘interval’ could not be found"
sothat, I install

install.packages('Icens')
Installing package into ‘C:/Users/Admin/Documents/R/win-library/3.6’
(as ‘lib’ is unspecified)
Warning message:
package ‘Icens’ is not available (for R version 3.6.1)

Somebody please help me, how can I use package DCchoice.
Thanks alot!

Icens package is no longer available on CRAN you have to install it from Bioconductor

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("Icens")
1 Like

It's done!
Thank you very much

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.