Description Usage Arguments Value Examples
Removes blanks (white spaces and tabs) at the beginning and end of all entries of the provided dataframe. Converts all series of white space and/or tab(s) in the body of all dataframe entries into a single white space.
Removes blanks (white spaces and tabs) at the beginning and end of all entries of the provided dataframe. Converts all series of white space and/or tab(s) in the body of all dataframe entries into a single white space.
1 2 3 |
df |
A dataframe. |
A dataframe.
A dataframe.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## Not run:
df <- data.frame(
location = " glasgow ", occupation = "wine merchant",
stringsAsFactors = FALSE
)
df <- utils_squish_all_columns(df)
## End(Not run)
## Not run:
df <- data.frame(
location = " glasgow ", occupation = "wine merchant",
stringsAsFactors = FALSE
)
df <- utils_squish_all_columns(df)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.