Guest User

Untitled

a guest
Feb 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. library(naniar)
  2.  
  3. vis_dat(team_event_type_summary)
  4.  
  5. n_miss(team_event_type_summary)
  6.  
  7. miss_var_summary(team_event_type_summary)
  8.  
  9. #summary table
  10. miss_var_table(team_event_type_summary)
  11.  
  12. team_event_type_summary %>% group_by(event_month) %>% miss_var_summary()
  13.  
  14. gg_miss_var(team_event_type_summary, facet=event_month)
  15.  
  16. # data shadow - _NA or !NA - bind two together
  17.  
  18. bind_shadow(team_event_type_summary) %>% glimpse()
  19.  
  20. bind_shadow(team_event_type_summary) %>%
  21. ggplot(aes(x=team, y=type)) + geom_miss_point()
  22.  
  23.  
  24. library(visdat)
  25.  
  26. vis_dat(traffic_watch_summary_days)
Add Comment
Please, Sign In to add comment