In R , I run the following script:
> 1:6 %in% 0:36 [1] TRUE TRUE TRUE TRUE TRUE TRUE
This explicitly creates a logical vector. I read the documentation, but I canβt find a statement that returns a scalar based on the result, so 1:6 %in% 0:36 will just return TRUE , with 1:6 %in% 0:36 0:37 %in% 0:36 return FALSE .
Is there one?
r
dplanet Apr 30 2018-12-12T00: 00Z
source share