Как построить карту на Shiny R с помощью библиотеки "rworldmap"

Хотя я могу создать хорошую карту, используя мои данные с помощью rworldmap при уценке, я не могу реализовать то же самое с помощью Shiny R. Пожалуйста, помогите.

Мой фрагмент кода:

# Join data to a map to create a spatialPolygonsDataFrame
sPDF <- joinCountryData2Map(comb_mdata, joinCode='NAME', nameJoinColumn='Country')

par(mai=c(0,0,0.2,0),xaxs="i",yaxs="i")

mapParams <- mapCountryData(sPDF, nameColumnToPlot='Wt.Score',
           mapRegion="world",
           missingCountryCol='dark grey', numCats=10, 
           colourPalette=c('green4','green1','greenyellow','yellow','yellow2','orange','coral','red','red3','red4'),
           addLegend=FALSE,
           oceanCol="light blue")

do.call(addMapLegend, c(mapParams, legendWidth=1.0, legendIntervals="page", legendMar=3))

mtext("[Grey Color: No Data Available]",side=1,line=-41)

1 ответ

Решение

Наконец я смог решить свою проблему, и это может помочь кому-то нуждающемуся:

ui.R:

mainPanel(
    tabsetPanel(id="tp",
                tabPanel("Map View", plotOutput("mPlot", height="560px", width="950px"))
    )
)

server.R:

# Join data frame 'comb_mdata' to the map
sPDF <- joinCountryData2Map(comb_mdata, joinCode='NAME', nameJoinColumn='Country')

# Generate the Map 
output$mPlot <- renderPlot({
mapParams <- mapPolys(sPDF, nameColumnToPlot='Wt_Score', mapRegion='world',
                           missingCountryCol='dark grey', numCats=10, 
                           colourPalette=c('green4','green1','greenyellow','yellow','yellow2','orange','coral','red','red3','red4'),
                           addLegend=TRUE,
                           oceanCol='light blue')
mtext("[Grey Color: No Data Available]",side=1,line=-1)
})
Другие вопросы по тегам