Var1 is a list:
var1 <- list(c("Parts of a Day", "Time in Astronomy", "Star"), c("Tree Tall", "Pine Tree"))
How to convert all the characters to lowercase? The desired answer is the following list:
var1 <- list(c("parts of a day", "time in astronomy", "star"), c("tree tall", "pine tree"))
I used
as.list(tolower(var1))
But it gives the following answer with unwanted \
[[1]]
[1] "c(\"parts of a day\", \"time in astronomy\", \"star\")"
[[2]]
[1] "c(\"tree tall\", \"pine tree\")"
Thanks.