Pregunta de principiante en R

Hola estoy usando Rstudio con la versión de R 4.3.2 (2023-10-31 ucrt) e intento descargar para un curso que estoy haciendo un paquete que se llama scrubr, pero al darle descargar me sale que ese paquete no se encuentra disponible para la versión del programa y que busque una alternativa para descargar pero no conozco ninguna, si alguien sabe como resolver este problea o directamente conoce una alternativa al scrubr se lo agradeceria mucho.

The package scrubr was removed from the CRAN repository. Here is the message and a machine translation of it.

Package ‘scrubr’ was removed from the CRAN repository.
Formerly available versions can be obtained from the archive.
Archived on 2021-09-08 as check problems were not corrected in time.

El paquete 'scrubr' se eliminó del repositorio CRAN. Las versiones disponibles anteriormente se pueden obtener del archivo[Index of /src/contrib/Archive/scrubr]. Archivado el 2021-09-08 ya que los problemas de verificación no se corrigieron a tiempo.

You can download the file scrubr_0.4.0.tar.gz (https://cran.r-project.org/src/contrib/Archive/scrubr/scrubr_0.4.0.tar.gz) and try to install from source.

[Puede descargar el archivo scrubr_0.4.0.tar.gz (https://cran.r-project.org/src/contrib/Archive/scrubr/scrubr_0.4.0.tar.gz) e intentar instalarlo desde el código fuente]

install.packages("file_path", repos = NULL, type = "source")

Ya lo intenté instalar pero me sale lo siguiente:

install.packages("C:/Users/laura/Downloads/scrubr_0.4.0 (1).tar.gz", repos = NULL, type = "source")
Installing package into ‘C:/Users/laura/AppData/Local/R/win-library/4.3’
(as ‘lib’ is unspecified)
ERROR: dependencies 'qlcMatrix', 'fastmatch', 'hoardr' are not available for package 'scrubr'

  • removing 'C:/Users/laura/AppData/Local/R/win-library/4.3/scrubr'
    Warning in install.packages :
    installation of package ‘C:/Users/laura/DOWNLO~1/scrubr_0.4.0 (1).tar.gz’ had non-zero exit status

The packate scrubr requires the packages qlcMatrix, fastmatch and hoardr. You can install fastmatch and hoardr with

install.packages("fastmatch")
install.packages("hoardr")

The package qlcMatrix has been removed from CRAN but you can install it from GitHub

install.packages("devtools")
devtools::install_github("cysouw/qlcMatrix")

It is possible that qlcMatrix requires other packages.

Translation:
El paquete scrubr requiere los paquetes qlcMatrix, fastmatch y hoardr. Puede instalar fastmatch y hoardr con

install.packages("fastmatch")
install.packages("hoardr")

El paquete qlcMatrix se eliminó del repositorio CRAN pero puede instalarlo desde GitHub

install.packages("devtools")
devtools::install_github("cysouw/qlcMatrix")

Es posible que qlcMatrix requiere otros paquetes.

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

If you have a query related to it or one of the replies, start a new topic and refer back with a link.