制作一个字符串频率表

发布于 2024-11-29 02:28:48 字数 213 浏览 2 评论 0原文

我正在尝试制作一个包含许多字符串的汇总表。我的数据如下所示:

x<-c("a", "a", "b", "c", "c", "c", "d")

我如何一次分析每个字符串的重复次数?理想情况下,生成这样的频率表(我认为按频率递减排序很容易):

"a" 2
"b" 1
"c" 3
"d" 1

I am trying to make a summary table of many strings. My data looks like this:

x<-c("a", "a", "b", "c", "c", "c", "d")

How would I analyse the recurrence of each string at once? Ideally to produce a table of frequency like this (I presume it would be easy to sort for decreasing frequency):

"a" 2
"b" 1
"c" 3
"d" 1

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

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

发布评论

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

评论(2

挥剑断情 2024-12-06 02:28:48

用它来制作频率表:

table(x)

要排序只需使用排序。

sort(table(x), decreasing = TRUE)

希望有帮助

Use this to make the frecuency table:

table(x)

To sort just use sort.

sort(table(x), decreasing = TRUE)

Hope that helps

丢了幸福的猪 2024-12-06 02:28:48

同样,

rle(sort(x))

会进行计数;然后您可以根据需要对结果进行排序。

Similarly,

rle(sort(x))

will do the counting; you can then sort the results as desired.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文