Skip to content
Snippets Groups Projects
Select Git revision
  • f4879e7b414c07c9263ac5ade499b33c488e3fff
  • main default
  • master protected
  • quarto-rebuild
4 results

4_c

Blame
  • Forked from LBMC / Hub / formations / R_basis
    Source project has a limited visibility.
    4_c 158 B
    mutate(
      flights,
      dep_time = (dep_time %/% 100) * 60 + 
        dep_time %% 100,
      sched_dep_time = (sched_dep_time %/% 100) * 60 +
        sched_dep_time %% 100
    )