Class hexbin
- это класс S4, а пакет определяет обобщенный S4 c и метод для plot
. (Исходный код здесь ). В пространстве имен пакета graphics
нет универсального S4 c для plot
, только универсальный S3 c.
Поэтому решение очень простое:
hexbin::plot(bin, main="" , colramp=my_colors , legend=F )
Вот пример, чтобы доказать это:
library(hexbin)
library(RColorBrewer)
# Create data
x <- rnorm(mean=1.5, 5000)
y <- rnorm(mean=1.6, 5000)
# Make the plot
bin<-hexbin(x, y, xbins=40)
my_colors=colorRampPalette(rev(brewer.pal(11,'Spectral')))
hexbin::plot(bin, main="" , colramp=my_colors , legend=F )
Создано в 2020-02-17 с помощью пакета prex (v0.3.0)