R语言|ifelse的用法

Posted 西西与维奥拉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了R语言|ifelse的用法相关的知识,希望对你有一定的参考价值。

ifelse returns a value with the same shape as test which is filled with elements selected from either yes or no depending on whether the element of test is TRUE or FALSE. 

Usage:
ifelse(test, yes, no)

示例:
base_data$sbp<-ifelse(is.na(base_data$sbp_a1),base_data$sbp_m1,base_data$sbp_a1)

 

以上是关于R语言|ifelse的用法的主要内容,如果未能解决你的问题,请参考以下文章

R语言中的if else语句

R语言IfElse条件语句实战

Cg入门19:Fragment shader - 片段级模型动态变色

R语言笔记之语法篇

SQL Select 语句的用法

R: which(查询位置)%in% (是否存在)ifelse(判断是否):