标签: r
有没有人知道在R中将整数向量转换为单个数字的方法,例如:
> x <- c(1,2,3) > x <- compress(x) > x [1] 123
compress()将成为某种功能。 我希望值x为单个数字,因此我可以将其乘以加密密钥。
compress()
x
答案 0 :(得分:5)
试试这个
x = 1:3 as.numeric(paste(x, collapse = "")) # 123