Guest User

Untitled

a guest
Jun 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. sapply(isNumVal, plotHist)
  2.  
  3. plotHist <- function(df){
  4. df <- tbl_df(df)
  5.  
  6. print(
  7. ggplot(df, aes(x = df[1])) + geom_histogram()
  8. )
  9.  
  10. }
Add Comment
Please, Sign In to add comment