anonymize: To Make Anonymous a Data Frame

Description Usage Arguments Value Author(s) See Also Examples

Description

Replaces factor and character variables by a combination of letters and numbers. Numeric columns are also transformed, see details.

Usage

1

Arguments

x

A vector or a data frame.

Value

An object of the same type as x.

Author(s)

Daniel Marcelino

See Also

soundexBR.

Examples

1
2
3
4
5
6
7
mtl <- data.frame(
month = a <- c('J','F','M','A','M','J','J','A','S','O','N','D'),
precip = b <- c(78,62,74,78,76, 83, 91, 93, 93,78, 93, 81), 
max = c <- c(-6, -4, 2, 11, 19, 24,  26,  25, 20, 13, 5, -2),
min = d <- c(-15, -13, -7, 1, 8,  13, 16, 14, 9, 3, -2, -10) )

anonymize(mtl)

SciencePo documentation built on May 2, 2019, 5:53 p.m.