分组条形图
我有以下数据:
bin groupname total_dist
0 rowA 377
0 rowA 306.6
0 rowB 2.1
0 rowB 110.6
1 rowA 918.1
1 rowA 463.2
1 rowB 798.2
1 rowB 1196
2 rowA 1295.1
2 rowA 1269.1
2 rowB 698
2 rowB 1022.1
使用 R,我想制作一个条形图,其中每个 bin 都有一个用于 rowA 的条形图和一个用于 rowB 的条形图。我可以按其中之一对 Total_dist 进行分组(plot(total_dist~bin)
或 plot(total_dist~groupname)
)。但我不知道如何将它们结合起来。
我想要与此示例类似的东西:
I have the following data:
bin groupname total_dist
0 rowA 377
0 rowA 306.6
0 rowB 2.1
0 rowB 110.6
1 rowA 918.1
1 rowA 463.2
1 rowB 798.2
1 rowB 1196
2 rowA 1295.1
2 rowA 1269.1
2 rowB 698
2 rowB 1022.1
Using R, I want to make a bar graph where there is a bar for rowA and a bar for rowB for each bin. I can group total_dist by one or the other (plot(total_dist~bin)
or plot(total_dist~groupname)
). But I can't figure out how to combine them.
I want something that looks similar to this example:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个经典的解决方案。 (假设您的数据框名为
df
),这里是使用 ggplot2
Here is a classic solution. (Supposing your dataframe is named
df
)and here is solution using ggplot2