I want to draw a map. The country that I need to pront is Italy and I use this code:
library(sf)
library(raster)
library(dplyr)
library(spData)
library(spDataLarge)
library(tmap) # for static and interactive maps
library(leaflet) # for interactive maps
library(ggplot2) # tidyverse data visualization package
map = tm_shape(it) + tm_fill() + tm_borders()
print(map)
If I write nz or world works but other contry not, why? How can I print Italy? Exist another code? I don't find anything that works.