| allperm | R Documentation | 
Computes all the combinations of the transformed parameters
allperm(
  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 | a character vector containing selected colnames from a data frame. Defaults for all the variables in data. See subset. | 
| transf | The transformations to be applied to each parameter | 
A matrix with all the working combinations of supplied transformations
data(centro_2015)
dados <- centro_2015
vars <- colnames(dados)
perms <- allperm(dados, select = vars)
head(perms)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.