| not | R Documentation |
A wrapper function for !. This is the same thing as bang().
not(x)
x |
a logical object |
a logical object
# load the data
data(nhanes)
# check whether values of smq020 are not missing
nhanes$smq020 |> is.na() |> not()
# check whether values of smq020 are not missing
nhanes |> dollar(smq020) |> is.na() |> not()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.