查看数据框的属性,但不包括行名。

huangapple go评论54阅读模式
英文:

See the attributes of a dataframe but exclude rownames

问题

我想查看数据框的属性,但要排除**$row.names**部分。
我正在使用attributes()。

attributes( df )

是否可以使用这个函数来实现这一点,还是我需要寻找另一个函数?
提前感谢。

英文:

I'd like to see the attributes of a dataframe but exclude the $row.names part.
I'm using attributes().

attributes( df )

Is there a way to achieve this using this function or do I need to seek a different function?
Thanks in advance.

答案1

得分: 1

如果我们想要一步完成,可以使用 modifyList

modifyList(attributes(df), list("row.names" = NULL))
英文:

We could use

atr1 <- attributes(df)
atr1[setdiff(names(atr1), "row.names")]

If we want in a single step, use modifyList

 modifyList(attributes(df), list("row.names" = NULL))

huangapple
  • 本文由 发表于 2023年2月18日 01:38:26
  • 转载请务必保留本文链接:https://go.coder-hub.com/75487568.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定