# NOT RUN { tabyl(mtcars, cyl) tabyl(mtcars, cyl, gear) tabyl(mtcars, cyl, gear, am) # or using the %>% pipe mtcars %>% tabyl(cyl, gear) # illustrating show_na functionality: my_cars <- rbind(mtcars, rep(NA, 11)) my_cars %>% tabyl(cyl) my_cars %>% tabyl(cyl, show_na = FALSE) # Calling on a single vector not in a data.frame: val <- c("hi", "med", "med", "lo") tabyl(val) # }
Run the code above in your browser using DataCamp Workspace