R/mutate_head.R

Defines functions mutate_head

mutate_head <- 
  function(
           df,
           row = 10,
           col = 10
           ){
    df <- df[1:row, 1:col]
    return(df)
  }
chi-med-pro/extra documentation built on July 1, 2022, 6:21 a.m.