How to install the plotKML package?

Asked

Viewed 95 times

2

I want to install the following package in R http://cran.at.r-project.org/web/packages/plotKML/index.html

the following message appears:

Error in loadNamespace(j <- i[[1L]], c(lib.Loc, .libPaths()), versionCheck = vi[[j]]) : There is no package called '@Scales' In addition: Warning message: package ːplotKML' was built under R version 3.2.2 Error: package or namespace load failed for plotKML

  • 1

    Apparently your R is outdated, try updating it. If you still have the error of scales try to install the package manually (install.packages("scales"))

  • What command are you using to install the package?

1 answer

1

If you receive a message that some dependency is missing, you can try to have all dependent packages solved before installing the main package with the command:

install.Packages('plotKML', dependencies = TRUE)

Browser other questions tagged

You are not signed in. Login or sign up in order to post.