I'm a beginner in R and do with that my homework. I want to change the coordinates of some point to draw my country weather station like this:
stations <- read.csv("Stations.csv")
coordinates(stations)<-~lon+lat
plot(stations)
like this image:
my data are like this:
but at the first I want to start and install the coordinates package, this error is shown:
" package ‘coordinates’ is not available for this version of R "
please help meو what can I do?