gpt4 book ai didi

r - 将所有列名及其索引对保存为数据框/字典

转载 作者:行者123 更新时间:2023-12-05 08:36:04 30 4
gpt4 key购买 nike

我尝试获取列名及其索引,并将结果保存为数据框或字典:

df <- data.frame(a=rnorm(10), b=rnorm(10), c=rnorm(10))

我该怎么做?谢谢。

column index
a 1
b 2
c 3

最佳答案

data.frame(column = colnames(df), index = seq_along(df))
# column index
# 1 a 1
# 2 b 2
# 3 c 3

关于r - 将所有列名及其索引对保存为数据框/字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70858608/

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