在传单中为连续数据着色,R不起作用 [英] Coloring continuous data in leaflet, R does not work

查看:80
本文介绍了在传单中为连续数据着色,R不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我的数据:

t <- data.frame(Name=c('A','B','C','D','E','F','G','H','I','J'),
                Longitude=c(151.2008,151.2458,150.8217,151.1215,150.8906,151.0660,150.8889,150.9188,150.4364,150.9982),
                Latitude=c(-33.90772,-33.89250,-34.05951,-33.97856,-34.40470,-33.90010,-33.92832,-33.90761,-34.44651,-33.79232),
                Diff=c(0.03,0.10,0.12,0.04,-0.12,0.34,-0.14,-0.01,0.21,-0.02),
                Diff1=c(30,100,120,40,-120,340,-140,-10,210,-20))

我想使用传单和R在地图上绘制这些点,并使用Diff/Diff1的值获得连续颜色.这是我的代码:

I want to use leaflet and R to draw this points on the map, and use the values of Diff / Diff1 for continuous color. Here is my code:

library(leaflet)
pal <- colorNumeric(
    palette = colorRampPalette(c('red','green')),
    domain = t$Diff1)
leaflet(data=t) %>%
    addTiles() %>%
    addCircles(lng=~Longitude,lat=~Latitude,radius=10,popup=~Name,color=~pal(Diff1))

我在这里不需要很多不同的颜色.我只希望随着Diff1的增加,颜色可以从红色变为绿色.但是我的地图上只有红点:

I do not need a lot of different colors here. I just want the color could change from red to green as the increase of Diff1. But I only have red points on my map:

另一个问题是,无论我如何更改radius的值,数据点的大小都不会改变.我不知道哪里出了错.

Another problem is no matter how I change the value of radius, the size of the data point does not change at all. I have no idea where I got wrong.

所以,我的问题是:

如何使用连续色? 如何更改点的大小?

How to use coutinuous color? How to change the size of the points?

推荐答案

尝试一下(排除下面的数据框t):

Try this (exluding the dataframe t below):

library(leaflet)
pal <- colorNumeric(
  palette = colorRampPalette(c('red', 'green'))(length(t$Diff1)), 
  domain = t$Diff1)

leaflet(data = t) %>%
  addTiles() %>%
  addCircleMarkers(
    lng =  ~ Longitude,
    lat =  ~ Latitude,
    radius = ~ Diff * 100,
    popup =  ~ Name,
    color =  ~ pal(Diff1)
  )

请记住,colorRampPalette实际上会返回一个函数,因此在使用它时,需要使用()破解"打开该函数,就像这样:

Remember, colorRampPalette actually returns a function, so you need to "crack" open the function with () when you are going to use it, like so:

colorRampPalette(c('red', 'green'))(length(t$Diff1))
# "#FF0000" "#E21C00" "#C63800" "#AA5500" "#8D7100" "#718D00" "#55AA00" "#38C600" "#1CE200" "#00FF00"

检查开始和结束颜色(应为红色"和绿色"):

Check the start and end colors (should be "red" and "green"):

col2rgb("#FF0000")
#       [,1]
# red    255
# green    0
# blue     0

col2rgb("#00FF00")
#       [,1]
# red      0
# green  255
# blue     0

是的,它确实按预期工作.

Yes, it did work out as expected.

这篇关于在传单中为连续数据着色,R不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆