将注释颜色栏添加到ggplot或ggvis barplot

问题描述 投票:-2回答:1

有谁知道如何将注释颜色条添加到ggplotggvis/plotly/... barplot

一个例子就像下面的“热图1”,颜色条(蓝色和红色)表示样本信息为类型a或类型b:

r ggplot2 visualization plotly ggvis
1个回答
0
投票

如果您使用type a/type b变量来获得fill美学,您将获得彩色条纹和图例。

suppressPackageStartupMessages(library(tidyverse))

df <- data.frame(trt = c("a", "b", "c"), outcome = c(2.3, 1.9, 3.2))
ggplot(df, aes(trt, outcome, fill=trt)) +
  geom_col()

© www.soinside.com 2019 - 2024. All rights reserved.