powered by
Select only numerical columns in a dataframe
numericalonly(df, dropnacols = TRUE, logs = FALSE, natransform = NA)
Data.frame
Boolean. Drop columns with only NA values?
Boolean. Calculate log(x)+1 for numerical columns?
String. "mean" or 0 to impute NA values. If set to NA no calculation will run.
data.frame with all numerical columns selected.
Other Data Wrangling: balance_data(), categ_reducer(), cleanText(), date_cuts(), date_feats(), formatNum(), holidays(), impute(), left(), normalize(), ohe_commas(), ohse(), removenacols(), removenarows(), replaceall(), textFeats(), textTokenizer(), vector2text(), year_month(), year_week()
balance_data()
categ_reducer()
cleanText()
date_cuts()
date_feats()
formatNum()
holidays()
impute()
left()
normalize()
ohe_commas()
ohse()
removenacols()
removenarows()
replaceall()
textFeats()
textTokenizer()
vector2text()
year_month()
year_week()
# NOT RUN { data(dft) # Titanic dataset str(dft) numericalonly(dft) %>% head() numericalonly(dft, natransform = "mean") %>% head() # }
Run the code above in your browser using DataLab