首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

没有使用geom_raster的渐变色

没有使用geom_raster的渐变色可以通过多种方式实现。以下是一些实现方式:

  1. ggplot2
代码语言:ggplot2
复制
ggplot(data = df, aes(x = loc, y = cars_sold)) +
  geom_col(fill = "darkblue") +
  coord_flip() +
  labs(title = "Number of Cars Sold by Dealership") +
  facet_wrap(~V1) +
  theme_bw() +
  theme(panel.border = element_blank(), panel.grid = element_blank(), strip.text = element_blank()) +
  scale_fill_manual(values = c("#66CC66", "#FDB813")) +
  theme(legend.position = "none") +
  labs(title = paste0("Number of Cars Sold by Dealership: ", year))
  1. plotly
代码语言:R
复制
library(plotly)

plot_ly(data = df, x = loc, y = cars_sold, type = "bar", color = I("darkblue")) %>%
  layout(title = "Number of Cars Sold by Dealership") %>%
  facet_wrap(~V1) %>%
  theme_bw() %>%
  theme(panel.border = element_blank(), panel.grid = element_blank(), strip.text = element_blank()) %>%
  scale_fill_manual(values = c("#66CC66", "#FDB813")) %>%
  theme(legend.position = "none") %>%
  labs(title = paste0("Number of Cars Sold by Dealership: ", year))
  1. ggMarginal
代码语言:R
复制
library(ggplot2)

ggplot(data = df, aes(x = loc, y = cars_sold)) +
  geom_col(fill = "darkblue") +
  coord_flip() +
  labs(title = "Number of Cars Sold by Dealership") +
  facet_wrap(~V1) +
  theme_bw() +
  theme(panel.border = element_blank(), panel.grid = element_blank(), strip.text = element_blank()) +
  scale_fill_manual(values = c("#66CC66", "#FDB813")) +
  theme(legend.position = "none") +
  labs(title = paste0("Number of Cars Sold by Dealership: ", year)) +
  theme(panel.margin = unit(0, "cm"))

以上是一些实现没有使用geom_raster的渐变色的方法。你可以根据自己的需求选择其中一种进行使用。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

-

没有这家玻璃公司,就没有今天的 iPhone

1分9秒

磁盘没有初始化怎么办?磁盘没有初始化的恢复方法

4分46秒

【秒杀功能这么牛,你的小程序还没有???】

3分57秒

13,如何保证下载的软件是安全可靠的?没有被篡改?

56秒

全网最简单粗暴的微信多开,没有之一

1分7秒

磁盘3没有初始化显示未分配的空间的数据恢复教程

-

飞天奔月-1:没有云计算,阿里不会成为今天的阿里

-

中国手机销量榜新鲜出炉,为何前5没有苹果的身影呢?

1分12秒

搞网络安全的少年们,有没有私活能够赚钱?【漏洞原理/黑客/过保护】

-

两个没有乔布斯的时代 苹果重回80年代“斯卡利陷阱”

1分35秒

磁盘显示未知没有初始化分区全部丢失的恢复方法-数据恢复小妙招

1分0秒

逆向没有初级岗?高级岗都哪里来的?【网络安全/科普/面试/考研/C++】

领券