How can I divide the data in a single column to multiple columns
[10,
11,
12,
13,
14,
15,
.
.
.
]
Now I ant to divide this data into multiple columns like this and assign column values
[a,b,c
10,11,12
13,14,15
16,17,18
.,.,.,
.,.,.,
.,.,.,]
How can I do this R.