| alltransf | R Documentation | 
Computes all the chosen transformations to the input data frame in the chosen parameters.
alltransf(
  data,
  subset,
  select = colnames(data),
  transf = c("rsqrt", "log", "sqrt")
)
| data | A data frame | 
| subset | a specification of the rows to be used: defaults to all rows.
This can be any valid indexing vector (see [.data.frame) for the
rows of data or if that is not supplied, a data frame made up of the
variables used in  | 
| select | expression, indicating columns to select from a data frame. Defaults for all the variables in data. See subset. | 
| transf | The chosen transformations to be applied to the data | 
A list with all data transformed according to the arguments passed.help
library(appraiseR)
data(centro_2015)
dados <- centro_2015
vars <- colnames(dados)
alltransf(dados, select = vars)
alltransf(dados, 1:10, c("valor", "area_total"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.