Description Usage Arguments Value Examples
This function will normalise the dataframe entered. If only certain columns need to be normalised, these can be specified. The order of the columns is kept the same
1 | normaliseDf(dataframe, applicableColumns = c())
|
dataframe |
a dataframe to be normalised |
applicableColumns |
a vector of character of dataframe names to be normalised in the dataframe |
a dataframe with normalised values
1 2 3 | dataframe <- data.frame(first = c(1:3), second = c(4:6), third = c(7:9))
normaliseDf(dataframe)
normaliseDf(dataframe, c("first", "third"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.