我想连接csv
中的多列,并使用Leaflet
在弹出窗口中显示其在R中各个点的数据。
我已经从csv
设置了点,以便将其显示在R中,但是根据我在互联网上阅读的内容,必须在html
中设置弹出窗口,但我不知道是否可以从csv
的列中读取。
这是我的代码:
library(leaflet)
library(dplyr)
m<-leaflet()
m
ct <- read.csv("data.csv", stringsAsFactors=FALSE) # Brings in the file 'ctlist.csv'
m<-leaflet(ct) %>%
addTiles()%>%
setView(lat=14.0818,lng=-87.20681,zoom=6)
m %>% addCircles(~lng, ~lat, popup=ct$type, weight = 3, radius=40,
color="#ffa500", stroke = TRUE, fillOpacity = 0.8)