英文:
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))
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论