Функция ggplot2 scale_fill_gradient () не меняет цвета точек R - PullRequest
0 голосов
/ 25 ноября 2018

Я использую ggplot2 в R для создания карт.В прошлом я мог успешно использовать функцию scale_fill_gradient () для управления заливками geom_point.Однако, когда я запускаю приведенный ниже код (с предоставленной таблицей примеров), я просто получаю карту всех черных точек.Легенда выглядит правильной, но точки никогда не меняют цвет.Я думаю, что моя желаемая переменная не соответствует эстетике заполнения, но я не могу понять, почему.Заранее спасибо!

(если это имеет значение, я использую пакет tibble для определения таблиц)

table = tibble(long = c(15.28, 15.29, 15.3, 15.31, 15.32), lat = c(-4.4, -4.39, -4.38, -4.37, -4.36), consumption = c(NA, 3, 54, 6, 8))

mapping = aes_string(x = 'long', y = 'lat', fill = 'consumption')

# define breaks, limits, colors

low = 'seashell'
high = 'tan3'
breaks = c(0, max(na.omit(table)[['consumption']]))
limits = breaks

# plot 

p <- ggplot() +
  # points 
  geom_point(mapping = mapping, data = table, alpha = 0.7, size = 4) +
  # point colors
  scale_fill_gradient(low = low, high = high, na.value = 'darkgrey', guide = 'colorbar', aesthetics = 'fill'
                      , breaks = breaks, limits = limits) +
  # title
  ggtitle('consumption') +
  # title formatting
  theme(plot.title = element_text(color = "red", size = 10, face = "bold", hjust=0),
        legend.position="bottom",
        legend.text=element_text(size=9),
        legend.title=element_text(size=9)) +
  # legend
  guides(fill=guide_colorbar(title='consumption')) +
  # get rid of axes, etc.
  theme(axis.line = element_blank(),
        axis.text = element_blank(),
        axis.ticks = element_blank()) +
  xlab('') +
  ylab('') +
  # make legend correct
  theme(legend.box = 'vertical') +
  # add max/min corresponding to map
  xlim(c(15.28, 15.38)) +
  ylim(c(-4.41, -4.30))

1 Ответ

0 голосов
/ 25 ноября 2018

Как уже упоминалось в комментариях, вы должны изменить заливку на цвет.Вот как я этого добился:

library(tidyverse)
table = tibble(long = c(15.28, 15.29, 15.3, 15.31, 15.32), lat = c(-4.4, -4.39, -4.38, -4.37, -4.36), consumption = c(NA, 3, 54, 6, 8))

##Changed here to color
mapping = aes_string(x = 'long', y = 'lat', color = 'consumption') 

# define breaks, limits, colors

low = 'seashell'
high = 'tan3'
breaks = c(0, max(na.omit(table)[['consumption']]))
limits = breaks

# plot 

ggplot() +
    # points 
    geom_point(mapping = mapping,
               data = table, alpha = 0.7, size = 4) +
    # point colors
    #Change here to aesthetics = color
    scale_color_gradient(low = low, high = high, na.value = 'darkgrey', guide = 'colorbar', aesthetics = 'color'
                        , breaks = breaks, limits = limits) +
    # title
    ggtitle('consumption') +
    # title formatting
    theme(plot.title = element_text(color = "red", size = 10, face = "bold", hjust=0),
          legend.position="bottom",
          legend.text=element_text(size=9),
          legend.title=element_text(size=9)) +
    # legend
    guides(fill=guide_colorbar(title='consumption')) +
    # get rid of axes, etc.
    theme(axis.line = element_blank(),
          axis.text = element_blank(),
          axis.ticks = element_blank()) +
    xlab('') +
    ylab('') +
    # make legend correct
    theme(legend.box = 'vertical') +
    # add max/min corresponding to map
    xlim(c(15.28, 15.38)) +
    ylim(c(-4.41, -4.30))

enter image description here

...