Skip to content

Instantly share code, notes, and snippets.

@kumeS
Created October 10, 2024 02:51
Show Gist options
  • Save kumeS/dce137092ba94350e892c66aba022fac to your computer and use it in GitHub Desktop.
Save kumeS/dce137092ba94350e892c66aba022fac to your computer and use it in GitHub Desktop.
null.out <- function(V){
A <- c()
v <- as.vector(V)
for(N in 1:length(v)){
#N <- 1
if(is.null(v[[N]])){
A[N] <- ""
}else{
A[N] <- paste0(v[[N]], collapse = " ")
}}
return(A)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment