如何在R中创建分组条形图

时间:2018-10-30 15:14:03

标签: r csv bar-chart

我想在R中创建分组的条形图。但是,我当前使用的代码是创建堆叠的条形图。我一周中的每一天都想要两个酒吧。一个栏显示第一行数据,另一栏显示第二行数据。 有谁知道该怎么做?

#  Sample CSV data
x <- read.csv(text="month, mon, tues, wed, thurs, fri, sat, sun
  9, 1, 3, 5, 7, 1, 2, 2
  9, 1, 6, 8, 1, 1, 2, 3")


library(ggplot2)
# x <- read.csv("checkinlobby.csv")
y <- data.matrix(x)
barplot(y)

1 个答案:

答案 0 :(得分:1)

这是我的解决方法:

1st)创建一个新列,使我们可以将其传递给fill参数。

2nd)将数据从宽变长,以使ggplot更容易。

3rd)将日期变量设为一个因子,然后对其重新排序

4th)使用position =“ dodge”进行绘图

library(tidyverse)

#  Sample CSV data
x <- read.csv(text="month, mon, tues, wed, thurs, fri, sat, sun
              9, 1, 3, 5, 7, 1, 2, 2
              9, 1, 6, 8, 1, 1, 2, 3")


##
graph <- x %>% mutate(rows = 1:nrow(x)) %>%
  gather(day, measure, -month, -rows) %>%
  mutate(day = factor(day,
  levels = c("mon","tues","wed","thurs", "fri", "sat","sun"))) %>%
  ggplot(aes(x = day, y = measure, fill = as.character(rows))) +
  geom_col(position = "dodge")

graph