I want to create some example data and started as follows;
dat <- as.data.frame(runif(100, 0, 3000))
Now I would like to do the same thing, but create a character vector, something like:
dat <- as.data.frame(runif(100, A, Z))
What would be the easiest way to do this?