数据框列的简单操作
我有一个名为 data
的数据框,我从 R 脚本中的 CSV 文件中读取该数据框。该数据框中有一列(名为 Bool
),其所有值为 FALSE。
给定一个整数 x
,我想将第一个 x< /code> 列中的行
Bool
TRUE
。
I have a data frame called data
which I read in from a CSV file in my R script. There is a column (named Bool
which is in that data frame which has all values as FALSE.
Given an integer x
, I want to make the first x
rows in the column Bool
TRUE.
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以
You could