由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 有什么R function 可以推荐?
相关主题
R question about apply() and outer()如何在R里面对一整列数据进行操作?
【急】一个基本的R的问题,求助。谢谢!大包子答谢今天又“R”了 -- 感想和请教。
请问如何在R中写recursive function?R 问题
请教一个R的问题(function)R program help
R 里面怎样记录程序的运行时间 ??再问R的问题 - 关于matrix 的operation
在R中ifelse如何运用于variable recoding?[合集] 请问如何看到R的source code?
脑筋急转弯的面试题R一问
R question -- character variable recoding -- what's wrong???R问题请教。
相关话题的讨论汇总
话题: prima话题: total话题: ifelse话题: 763话题: function
进入Statistics版参与讨论
1 (共1页)
h**t
发帖数: 1678
1
拿到一个code 是从sql翻译过来的, 很繁复。 其中有很多类似于下类这样的分类:
m_prima_total <- ifelse(prima_total <= 557.71, 0,NA)
m_prima_total <- ifelse(prima_total > 557.71 & prima_total <= 763, (prima_
total - 557.71)/(763 - 557.71), m_prima_total)
m_prima_total <- ifelse(prima_total > 763 & prima_total <= 1185.96 , 1, m_
prima_total)
m_prima_total <- ifelse(prima_total > 1185.96 & prima_total <= 1832.04 , (
1832.04-prima_total)/( 1832.04- 1185.96), m_prima_total)
m_prima_total <- ifelse(prima_total > 1832.04 | is.na(prima_total) == TRUE ,
0, m_prima_total)
有什么R built in 的function可以简化这一类的coding? 在已知各个分界点的情况下
,把数据分组并给新值。 我觉得lapply一类的应该可以用; 但是不还要自己在定义
FUN,也不知有没有更好的。
感谢!
l*********s
发帖数: 5409
2
cut
h**t
发帖数: 1678
3
Thank you so much!!
This is exactly I'm looking for!!

【在 l*********s 的大作中提到】
: cut
h**t
发帖数: 1678
4
Question again:
如何时时更新label (prima_total - 557.71)/(763 - 557.71)
谢谢
1 (共1页)
进入Statistics版参与讨论
相关主题
R问题请教。R 里面怎样记录程序的运行时间 ??
请问R里apply和sapply有什么区别在R中ifelse如何运用于variable recoding?
怎样用apply对多种endpoint构建linear model脑筋急转弯的面试题
R performace issueR question -- character variable recoding -- what's wrong???
R question about apply() and outer()如何在R里面对一整列数据进行操作?
【急】一个基本的R的问题,求助。谢谢!大包子答谢今天又“R”了 -- 感想和请教。
请问如何在R中写recursive function?R 问题
请教一个R的问题(function)R program help
相关话题的讨论汇总
话题: prima话题: total话题: ifelse话题: 763话题: function