在 R 中任意重新排序直方图列

发布于 2024-11-05 03:47:01 字数 650 浏览 1 评论 0原文

我想知道如何以对我的数据有意义的方式重新排序直方图的列。这个例子说明了我正在尝试做的事情。

我在一个文件中有这些数据:

blue    low
blue    medium
blue    high
blue    high
blue    high
blue    medium
green   low
green   low
green   low
green   high
pink    low
pink    high
pink    medium
pink    low
pink    high
red     high
red     low
red     low
red     low
red     medium
red     medium
red     medium

如果我运行这些命令:

colours <- read.table("colours.txt", sep="\t")
library(lattice)
histogram(~ V2 | V1, data=colours,  type="count")

我得到了几乎我想要的东西,除了直方图中的列按字母顺序排序,高,低,中和 我想让它们以更自然的方式排序为低、中、高。

预先非常感谢您提供有关如何实现此目标的任何指示。

I would like to know how I can re-order the columns of a histogram in a way that makes sense to my data. This example illustrates what I'm trying to do.

I have this data in a file:

blue    low
blue    medium
blue    high
blue    high
blue    high
blue    medium
green   low
green   low
green   low
green   high
pink    low
pink    high
pink    medium
pink    low
pink    high
red     high
red     low
red     low
red     low
red     medium
red     medium
red     medium

If I run these commands:

colours <- read.table("colours.txt", sep="\t")
library(lattice)
histogram(~ V2 | V1, data=colours,  type="count")

I get pretty much what I want except that the columns in the histograms are sorted alphabetically, high, low, medium and
I would like to have them sorted in the more natural way low, medium, high.

Thanks very much in advance for any pointers on how to accomplish this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

z祗昰~ 2024-11-12 03:47:01

您只需要订购您的因素:

colours$V2 = factor(colours$V2, levels=c("low", "medium", "high"))
histogram(~ V2 | V1, data=colours,  type="count")

You just need to order your factors:

colours$V2 = factor(colours$V2, levels=c("low", "medium", "high"))
histogram(~ V2 | V1, data=colours,  type="count")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文