gpt4 book ai didi

r - 更改数据框列表中的名称

转载 作者:行者123 更新时间:2023-12-04 04:29:11 24 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Changing Column Names in a List of Data Frames in R

(4 个回答)


2年前关闭。




我将工作目录中的所有文本文件读入一个列表,并剪切了一些列

all.files <- list.files(pattern = ".*.txt")
data.list <- lapply(all.files, function(x)read.table(x, sep="\t"))
names(data.list) <- all.files
data.list <- lapply(data.list, function(x) x[,1:3])

我最终得到了一个“2 的列表”
> str(data.list)
List of 2
$ 001.txt:'data.frame': 71330 obs. of 3 variables:
..$ V1: Factor w/ 71321 levels
..$ V2: Factor w/ 1382 levels
..$ V3: num [1:71330] 89.1 99.5 98.8 99.4 99.5 ...
$ 002.txt:'data.frame': 98532 obs. of 3 variables
..$ V1: Factor w/ 98517 levels
..$ V2: Factor w/ 1348 levels
..$ V3: num [1:98532] 99.5 99 99.5 98.4 100 ...

我想根据以下内容重命名 V1,V2,V3
new.names<-c("query", "sbjct", "ident")

这怎么可能与 lapply ?

最佳答案

你可以试试setNames

data.list <- lapply(data.list, setNames, new.names)

关于r - 更改数据框列表中的名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28944851/

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