gpt4 book ai didi

重命名数据框

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

我有一个名为 df 的 data.frame。我想将它保存在一个名称更好的文件中。我希望能够做到这一点:

df = ...

rename.data.frame(df, "gdp_2001_2014")

# Now the data.frame has a new name and can be used as normal:
gdp_2001_2014$y = 0

# And it can be saved with a nice name:
save(gdp_2001_2014, file=".\\datafile.Rdata")

名称很重要,原因如下:当您加载数据时,名称会自动跟随:

load(".\\datafile.Rdata")

summary(gdp_2001_2014)

最佳答案

## to re-name the data frame
gdp_2001_2014 <- df
## remove data frame 'df'
rm(df)
## write new data frame to file
write.table(gdp_2001_2014, file = "yourPath.Rdata")

根据数据,您还可以使用 write.csvwriteLines 等。

关于重命名数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23407315/

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