I have the following variables:
min.v<-5
max.v<-10
and i want to message the following
Test this. You entered "5 10"
Is this possible to print this with message()
or paste()
, since both functions regard quotes as strings. The variables in the message should be inside double quotes
I have tried message(as.character(paste(min.v, " ",max.v)))
but the double quotes are ignored.
This question is probably the exact opposite of this Solve the Double qoutes within double quotes issue in R