gpt4 book ai didi

R表函数-如何删除0计数?

转载 作者:行者123 更新时间:2023-12-02 08:34:33 25 4
gpt4 key购买 nike

我需要从表函数输出中删除所有列计数均为 0 的行。有什么简单的方法可以做到这一点吗?

table(ds$animal,ds$gender)

___ | M | F

Cat | 9 | 4

Dog | 0 | 0

Rat | 4 | 3

我只是想看看这些行:

___ | M | F

Cat | 9 | 4

Rat | 4 | 3

最佳答案

你需要降低因子动物的水平。

table(droplevels(ds$animal),ds$gender)

您也可以将它们从 ds 中删除,然后执行表格

ds$animal <- droplevels(ds$animal)
with(ds, table(animal,gender))

这里我使用了 with 因为它打印标题。

关于R表函数-如何删除0计数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29639680/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com