the problem when I intended to open file(County) in R

I had downloaded file County
then,I tapped load(file.choose())
and I chose County
but when I tapped qtm(County)
it comes out
Error in qtm(County) : could not find function "qtm"

Hello,

Happy to help if you can provide more detail. It sounds as if the library associated with function qtm cannot be found. I am assuming this is from the tmap package so will need to install and add the library call:

install.packages("tmap")
library(tmap)
1 Like

but I have already install.packages("tmap")

You still need to run the library call to attach the library to your current session so run:

library(tmap)

In addition - it won't find County and I suggest installing Rstudio (no reason to suffer on the terminal)

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.