I have a vector of data where every 4th row starts a new observation. I need to pivot the data so that first four values become the first row, the next four values become the second, and so on.
Here is a simplified example...
Given the following data:
a <- rep(c("a", "b", "c", "d"), 3)
The desired output is:
A_lab B_lab C_lab D_lab
1 a b c d
2 a b c d
3 a b c d