I would like to create ASCII characters in loop based on an integer variable. The result should be like this, but without the character vector:
v<-c("A","B","C","D","E")
for (i in 1:5) print(paste("ASCII:",v[i]))
If I start with
for (i in 65:69)
how do I continue?
Thanks&kind regards