I have a file (df) with two columns (LAB and OID)... I would like to create a new variable on df file: column3(OID_new), using the information of Columns 1(LAB) and 2 (OID):
LAB OID OID_new
12 NA 12
13 NA 13
14 NA 14
plate_1 18 18
plate_2 24 24
Plate_3 23 23
for this, i tried:
df %>%
mutate(OID_new= ifelse(OID == NA,df$LAB,
ifelse(OID ^= NA,"df$OID")))-> df1
But don't work
Thanks in advance
You can achieve that by using
ifelse()
, as you tried. A few things to mention:ifelse()
requires three statements:OID
isNA
:is.na(OID)
)TRUE
: returnLAB
FALSE
: returnOID
%>%
your dataframe, there's no need to access your dataframe by using$
ifelse()
is better here, since its dplyr versionif_else()
is type stable and would throw an error. This might be more convenient, but there might be unexpected results after implicit coercing, so be careful.Code
Output
Data