Hola
Actualicé mi versión R a la versión 4.2.2 el punto es que el paquete GISTools no está disponible para esa versión.
¿existe otra versión de GISTools para R 4.2.2?
I'm sorry to hear that you're experiencing trouble with the GISTools package after updating your R version. According to the CRAN page for GISTools (CRAN - Package GISTools), the latest version of the package is compatible with R versions 3.3.0 and higher, so it should be compatible with R 4.2.2.
If you're still having trouble installing the package, there are a few things you can try:
- Check that you have the latest version of R by running
version
in the R console. - Check that you have the latest version of the GISTools package by running
install.packages("GISTools", dependencies = TRUE)
in the R console. - Make sure that you have all the necessary dependencies installed by running
install.packages(c("sp", "rgdal", "rgeos"))
in the R console. - If the above steps don't work, try installing the package from source by running
install.packages("GISTools", type = "source")
. - If you are unable to install the package, you may look for alternative packages that provide similar functionality.
Please let me know if you have any further issues.
Hola,
GISTools
no ha sido actualizado en más de medio año y no ha pasado las comprobaciones de CRAN para la última versión de R, por eso ha sido retirado de CRAN.
Archived on 2022-06-20 as check problems were not corrected despite reminders.
Puedes intentar instalarlo desde githuh con este comando
remotes::install_github("cran/GISTools")
Pero no hay garantía de que funcione ya que si ha sido retirado de CRAN es porque la instalación falla en alguno de los sistemas operativos soportados por R.
This topic was automatically closed 21 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.