"r cbind vectors of unequal length" Code Answer's

You're definitely familiar with the best coding language R that developers use to develop their projects and they get all their queries like "r cbind vectors of unequal length" answered properly. Developers are finding an appropriate answer about r cbind vectors of unequal length related to the R coding language. By visiting this online portal developers get answers concerning R codes question like r cbind vectors of unequal length. Enter your desired code related query in the search bar and get every piece of information about R code related question on r cbind vectors of unequal length. 

r cbind vectors of unequal length

By Obsequious OctopusObsequious Octopus on Oct 11, 2020
# Example usage:
# If you have several vectors that you want to combine column-wise
# or row-wise without repeating values from the shorter vectors, 
# here is the easiest approach for doing that that I've found:
# Define vectors:
vector_1 <- c("a","b","c")
vector_2 <- c("d","e","f", "g")
vector_3 <- c("h","i","j", "k", "l")

# Add NAs to shorter vectors:
n = max(length(vector_1), length(vector_2), length(vector_3))
length(vector_1) = n
length(vector_2) = n
length(vector_3) = n

cbind(vector_1, vector_2, vector_3)
     vector_1 vector_2 vector_3
[1,] "a"      "d"      "h"     
[2,] "b"      "e"      "i"     
[3,] "c"      "f"      "j"     
[4,] NA       "g"      "k"     
[5,] NA       NA       "l" 

rbind(vector_1, vector_2, vector_3)
         [,1] [,2] [,3] [,4] [,5]
vector_1 "a"  "b"  "c"  NA   NA  
vector_2 "d"  "e"  "f"  "g"  NA  
vector_3 "h"  "i"  "j"  "k"  "l" 


# Note, this can also be done with cbind.na (see below) and rbind.na

# Basic syntax for cbind.na:
# Use cbind.na which is an internal function of the qpcR package
qpcR:::cbind.na()

# Example usage:
# Install package
install.packages("qpcR")
library(qpcR)

# Define vectors:
col1 <- c("a","b","c")
col2 <- c("d","e","f", "g")
col3 <- c("h","i","j", "k", "l")

# Run regular cbind for comparison:
cbind(col1, col2, col3)
     col1 col2 col3
[1,] "a"  "d"  "h" 
[2,] "b"  "e"  "i" 
[3,] "c"  "f"  "j" 
[4,] "a"  "g"  "k" # Note that col1 has "a" and "b" repeated
[5,] "b"  "d"  "l" # col2 has "d" repeated

# Run cbind.na:
qpcR:::cbind(col1, col2, col3) # ::: is for calling internal functions
     col1 col2 col3
[1,] "a"  "d"  "h" 
[2,] "b"  "e"  "i" 
[3,] "c"  "f"  "j" 
[4,] NA   "g"  "k" 
[5,] NA   NA   "l" # Shorter vectors have NA added instead of repeating

Source: stackoverflow.com

Add Comment

2

cbind vectors of different lengths r

By MFMF on Jun 21, 2020
x <- 1:2
y <- 1:10
n <- max(length(x), length(y))
length(x) <- n                      
length(y) <- n

Source: stackoverflow.com

Add Comment

0

cbind vectors of different lengths r

By MFMF on Jun 21, 2020
> l <- lapply(c(3,2,1,2,3),seq)
> lapply(c("t","l","b","r"), bind.pad, l=l, len=4)
[[1]]
     [,1] [,2] [,3] [,4] [,5]
[1,]   NA   NA   NA   NA   NA
[2,]    1   NA   NA   NA    1
[3,]    2    1   NA    1    2
[4,]    3    2    1    2    3

[[2]]
     [,1] [,2] [,3] [,4]
[1,]   NA    1    2    3
[2,]   NA   NA    1    2
[3,]   NA   NA   NA    1
[4,]   NA   NA    1    2
[5,]   NA    1    2    3

[[3]]
     [,1] [,2] [,3] [,4] [,5]
[1,]    1    1    1    1    1
[2,]    2    2   NA    2    2
[3,]    3   NA   NA   NA    3
[4,]   NA   NA   NA   NA   NA

[[4]]
     [,1] [,2] [,3] [,4]
[1,]    1    2    3   NA
[2,]    1    2   NA   NA
[3,]    1   NA   NA   NA
[4,]    1    2   NA   NA
[5,]    1    2    3   NA

Source: stackoverflow.com

Add Comment

0

All those coders who are working on the R based application and are stuck on r cbind vectors of unequal length can get a collection of related answers to their query. Programmers need to enter their query on r cbind vectors of unequal length related to R code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about r cbind vectors of unequal length for the programmers working on R code while coding their module. Coders are also allowed to rectify already present answers of r cbind vectors of unequal length while working on the R language code. Developers can add up suggestions if they deem fit any other answer relating to "r cbind vectors of unequal length". Visit this developer's friendly online web community, CodeProZone, and get your queries like r cbind vectors of unequal length resolved professionally and stay updated to the latest R updates. 

R answers related to "r cbind vectors of unequal length"

View All R queries

R queries related to "r cbind vectors of unequal length"

Browse Other Code Languages

CodeProZone