I have data
structure(list(Animal = c("dog", "cat", "dog ", "cat"), Fur = c("no",
"no", "yes", "yes"), Color = c("Pearl", "Midnight ", "Midnight ",
"Pearl")), class = "data.frame", row.names = c(NA, -4L))
I am trying to create a fixed with text file, but I want to have some of the columns up unique amounts of space. So let's say I want the Animal
column to be from positions 1-10, but I want Fur
to be in 50-54, and then I want Color
to be in 100-120. How would I go about doing this in R?