Skip to content

Instantly share code, notes, and snippets.

@chadsten
Created September 11, 2018 19:00
Show Gist options
  • Save chadsten/72a10c2f009509d92cf8107ff9f39d98 to your computer and use it in GitHub Desktop.
Save chadsten/72a10c2f009509d92cf8107ff9f39d98 to your computer and use it in GitHub Desktop.
#' Sum of all velcocity calculations
#'
#' @param hit_velocity (int)
#' @param cus_velocity (int)
#' @param qty_velocity (int)
#' @param imt_velocity (int)
#' @param lod_velocity (int)
#'
#' @return The sum of all passed parameters
#'
#' @examples
#' add(-2, 0, 1, 1, -3)
#'
#' @export
calculate_overall_velocity <- function(hit_velocity, cus_velocity, qty_velocity, imt_velocity, lod_velocity) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment