Description Usage Arguments Examples
View source: R/exploratory_functions.R
This function returns the original data.frame without columns that only have one value for all rows in the data.frame
1  | 
df: | 
 the data.frame to have its single-value columns removed  | 
1 2  | fake_df <- data.frame(a = rep(1, 5), b = (1:5), c = rep('a', 5), d = c('a', 'b', 'c', 'd', 'e'))
eliminate_single_value_cols(fake_df)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.