grepl.data.frame | R Documentation |
Grepl applied on a data.frame
grepl.data.frame(pattern, x, ...)
pattern |
search pattern |
x |
your data.frame |
... |
addtitional arguments for gerpl() |
a logical matrix
matrix(letters[1:6], 2, 3) |> as.data.frame() -> a
grepl.data.frame("c", a)
grepl.data.frame("\\w", a)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.