Suppose I want a user of my R program to enter a positive number.
If he enters a negative or types any alphabet (a, b ,c, d, etc.), I would want to keep him trying until he enters the desired positive number.
How do I check if he enters a character (a, b, c, etc.)?
For example if I have:(In fact someone on this site helped me to write this code correctly but I do not understand certain things especially, the third line as I have indicated "#explanation of this line" in the code
n <- -1
while(is.na(n) | (n < 1) ){
n <- readline("enter a positive integer for the number of simulations: ")
n <- ifelse(grepl("\\D",n),-1,as.integer(n)) #explanation of this line
}
QUESTIONS:
I know that
is.na(n)means if n is null (not available) so if the user presses enteris.na(n)becomesTRUE. Is that correct?what is the meaning of:
n <- ifelse(grepl("\\D",n),-1,as.integer(n)?How do I check if the user enters (a, b, c, d, ...)?
Thanks to those who can come to my rescue.
Owusu Isaac