gpt4 book ai didi

r - 根据其他数据框更改列类

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

我有一个数据框,我正在尝试根据 col_type 转换 dt 的每个变量的类。
查找下面的示例以获取更多详细信息。

> dt
id <- c(1,2,3,4)
a <- c(1,4,5,6)
b <- as.character(c(0,1,1,4))
c <- as.character(c(0,1,1,0))
d <- c(0,1,1,0)
dt <- data.frame(id,a,b,c,d, stringsAsFactors = FALSE)

> str(dt)
'data.frame': 4 obs. of 5 variables:
$ id: num 1 2 3 4
$ a : num 1 4 5 6
$ b : chr "0" "1" "1" "4"
$ c : chr "0" "1" "1" "0"
$ d : num 0 1 1 0

现在,我正在尝试根据以下数据框转换每列的类。
> var  
var <- c("id","a","b","c","d")
type <- c("character","numeric","numeric","integer","character")
col_type <- data.frame(var,type, stringsAsFactors = FALSE)


> col_type
var type
1 id character
2 a numeric
3 b numeric
4 c integer
5 d character

我想将 id 转换为 col_type 数据框中的类提及,等等所有其他列。

我的尝试:
setDT(dt)
for(i in 1:ncol(dt)){
if(colnames(dt)[i]%in%col_type$var){
a <- col_type[col_type$var==paste0(intersect(colnames(dt)[i],col_type$var)),]
dt[,col_type$var[i]:=eval(parse(text = paste0("as.",col_type$type[i],"(",col_type$var[i],")")))]
}

}

注意- 我的解决方案有效,但它真的很慢,我想知道我是否可以更有效、更干净地完成它。

建议将不胜感激。

最佳答案

我会用 colClasses 读取数据派生自 col_type 的参数 table :

library(data.table)
library(magrittr)
setDT(col_type)

res = capture.output(fwrite(dt)) %>% paste(collapse="\n") %>%
fread(colClasses = col_type[, setNames(type, var)])

str(res)
Classes ‘data.table’ and 'data.frame': 4 obs. of 5 variables:
$ id: chr "1" "2" "3" "4"
$ a : num 1 4 5 6
$ b : num 0 1 1 4
$ c : int 0 1 1 0
$ d : chr "0" "1" "1" "0"
- attr(*, ".internal.selfref")=<externalptr>

如果您可以在最初读入数据时执行此操作,则可以简化为...
 res = fread("file.csv", colClasses = col_type[, setNames(type, var)])

无需 data.table 即可轻松完成所有这些操作。

如果以某种方式从未将数据读入 R(作为 RDS 接收?),则有:
setDT(dt)
res = dt[, Map(as, .SD, col_type$type), .SDcols=col_type$var]

str(res)
Classes ‘data.table’ and 'data.frame': 4 obs. of 5 variables:
$ id: chr "1" "2" "3" "4"
$ a : num 1 4 5 6
$ b : num 0 1 1 4
$ c : int 0 1 1 0
$ d : chr "0" "1" "1" "0"
- attr(*, ".internal.selfref")=<externalptr>

关于r - 根据其他数据框更改列类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49518540/

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