gsub.data.frame {pcutils}R Documentation

Gsub applied on a data.frame

Description

Gsub applied on a data.frame

Usage

gsub.data.frame(pattern, replacement, x, ...)

Arguments

pattern

search pattern

replacement

a replacement for matched pattern

x

your data.frame

...

additional arguments for gerpl()

Value

a logical data.frame

Examples

matrix(letters[1:6], 2, 3) |> as.data.frame() -> a
gsub.data.frame("c", "a", a)

[Package pcutils version 0.2.5 Index]