我知道这个问题现在被问了一百万次,但是这些解决方案似乎都不适合我。
所以,我在R
中进行PowerBI
可视化。它基于excel sheet
,值在那里,所有这些都很好。下面是一些值(不能显示整个表格,因为它的工作,所以希望lat和long应该这样做)
OccupantLongitude OccupantLatitude
-0.12929 51.510687
-3.197602 55.953069
-2.240051 53.481768
-0.157475 51.513265
-0.101469 51.375207
0.108064 51.783877
-1.951729 50.746435
-1.318032 51.38506
这是我在PowerBI
#Create dataframe
#dataset <- data.frame(OccupantLatitude, OccupantLongitude, ComplianceStatus)
#Remove duplicated rows
#dataset <- unique(dataset)
require (ggmap)
mapImageData1 <- get_map(location = c(lon = -3.999179, lat = 54.538525),
color = "color",
source = "google",
maptype = "road",
zoom = 6)
ggmap(mapImageData1, extent = "device")
ggmap(mapImageData1) + geom_point(
aes(x=OccupantLongitude, y=OccupantLatitude, show_guide = TRUE, colour=ComplianceStatus),
data=dataset, alpha=.5, na.rm=T) +
scale_color_gradient(low='beige', high='blue')
我正在接受
'提供给连续比例'的离散值。
显然OccupantLongitude
和OccupantLatitude
不在引号中,这是我在寻找时找到的主要解决方案,所以我不确定现在要做什么......