gpt4 book ai didi

R 从一组字符串数据创建唯一键

转载 作者:行者123 更新时间:2023-12-04 10:38:55 25 4
gpt4 key购买 nike

是否有快速算法/函数将字符串转换为 R 中的整数

我有一个数据框看起来像

id_1 id_2 id_3 date        value
1 2 3 2012-11-18 50
1 1 4 2012-05-07 100


strtoi(paste(df[,1],df[,3],df[,4],sep='_')给我一个 NA
尝试设置一个唯一的主键,我可以用它来做一些基本的算术

谢谢

最佳答案

使用 digest包裹

library(digest)
temp <- data.frame(x1=c(1:5,1),x2=c(2:6,2),stringsAsFactors=FALSE)
temp <- data.frame(temp, uid = apply(temp, 1, digest),stringsAsFactors=FALSE))

关于R 从一组字符串数据创建唯一键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16053337/

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