зеркало из https://github.com/microsoft/wpa.git
35 строки
908 B
R
35 строки
908 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/anonymise.R
|
|
\name{jitter_metrics}
|
|
\alias{jitter_metrics}
|
|
\title{Jitter metrics in a data frame}
|
|
\usage{
|
|
jitter_metrics(data, cols = NULL, ...)
|
|
}
|
|
\arguments{
|
|
\item{data}{Data frame containing a query.}
|
|
|
|
\item{cols}{Character vector containing the metrics to jitter. When set to
|
|
\code{NULL} (default), all numeric columns in the data frame are jittered.}
|
|
|
|
\item{...}{Additional arguments to pass to \code{jitter()}.}
|
|
}
|
|
\description{
|
|
Convenience wrapper around \code{jitter()} to add a layer of
|
|
anonymity to a query. This can be used in combination with \code{anonymise()} to
|
|
produce a demo dataset from real data.
|
|
}
|
|
\examples{
|
|
jittered <- jitter_metrics(sq_data, cols = "Collaboration_hours")
|
|
head(
|
|
data.frame(
|
|
original = sq_data$Collaboration_hours,
|
|
jittered = jittered$Collaboration_hours
|
|
)
|
|
)
|
|
|
|
}
|
|
\seealso{
|
|
anonymise
|
|
}
|