mrcool
About
- Username
- mrcool
- Joined
- Visits
- 1
- Last Active
- Roles
- Member
Comments
-
For now this works ``` # this code snippet create a new column that has the result of `col1 | col2` # start with an empty column m<-lapply(1:length(data$col1),function(e) 0) for(i in 1:length(m)) { if (!is.na(data$col1[[i]]) & data$col1[[i]] …