R/no_factor.R

#' Converts the waypoint column from a factor to a number so you can join it later
#'
#'
#' @param x the sf dataframe that you loaded earlier
#' @return an sf dataframe
#'

no_factor<-function(x){
  x$Waypoint<-as.numeric(as.character(x$Waypoint))
}
marinereilly/salinitykayak documentation built on May 17, 2019, 6:36 a.m.