R因子的算术运算

编程入门 行业动态 更新时间:2024-10-10 03:26:28
本文介绍了R因子的算术运算的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个R数据框,我试图从另一列中减去一列.我使用$运算符提取了列,但是列的类是'factor',R不会对因子执行算术运算.有特殊功能可以做到这一点吗?

I have an R dataframe and I'm trying to subtract one column from another. I extract the columns using the $ operator but the class of the columns is 'factor' and R won't perform arithmetic operations on factors. Are there special functions to do this?

推荐答案

如果您确实希望使用该因子的级别,那么您所做的事情非常错误或太聪明了.

If you really want the levels of the factor to be used, you're either doing something very wrong or too clever for its own good.

如果您拥有的因子是包含存储在因子级别中的数字,那么您首先要使用as.numeric(as.character(...))将其强制为数字:

If what you have is a factor containing numbers stored in the levels of the factor, then you want to coerce it to numeric first using as.numeric(as.character(...)):

dat <- data.frame(f=as.character(runif(10)))

您可以在此处看到访问因子索引和分配因子内容之间的区别:

You can see the difference between accessing the factor indices and assigning the factor contents here:

> as.numeric(dat$f) [1] 9 7 2 1 4 6 5 3 10 8 > as.numeric(as.character(dat$f)) [1] 0.6369432 0.4455214 0.1204000 0.0336245 0.2731787 0.4219241 0.2910194 [8] 0.1868443 0.9443593 0.5784658

定时与另一种方法(仅在级别上进行转换)表明,如果级别不是每个元素唯一的,则转换会更快:

Timings vs. an alternative approach which only does the conversion on the levels shows it's faster if levels are not unique to each element:

dat <- data.frame( f = sample(as.character(runif(10)),10^4,replace=TRUE) ) library(microbenchmark) microbenchmark( as.numeric(as.character(dat$f)), as.numeric( levels(dat$f) )[dat$f] , as.numeric( levels(dat$f)[dat$f] ), times=50 ) expr min lq median uq max 1 as.numeric(as.character(dat$f)) 7835865 7869228 7919699 7998399 9576694 2 as.numeric(levels(dat$f))[dat$f] 237814 242947 255778 270321 371263 3 as.numeric(levels(dat$f)[dat$f]) 7817045 7905156 7964610 8121583 9297819

因此,如果length(levels(dat$f)) < length(dat$f),请使用as.numeric(levels(dat$f))[dat$f]以获得可观的速度增益.

Therefore, if length(levels(dat$f)) < length(dat$f), use as.numeric(levels(dat$f))[dat$f] for a substantial speed gain.

如果length(levels(dat$f))大约等于length(dat$f),则没有速度增益:

If length(levels(dat$f)) is approximately equal to length(dat$f), there is no speed gain:

dat <- data.frame( f = as.character(runif(10^4) ) ) library(microbenchmark) microbenchmark( as.numeric(as.character(dat$f)), as.numeric( levels(dat$f) )[dat$f] , as.numeric( levels(dat$f)[dat$f] ), times=50 ) expr min lq median uq max 1 as.numeric(as.character(dat$f)) 7986423 8036895 8101480 8202850 12522842 2 as.numeric(levels(dat$f))[dat$f] 7815335 7866661 7949640 8102764 15809456 3 as.numeric(levels(dat$f)[dat$f]) 7989845 8040316 8122012 8330312 10420161

更多推荐

R因子的算术运算

本文发布于:2023-11-30 15:45:14,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1650559.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:算术   因子

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!