R/convert.R

Defines functions convert

Documented in convert

#' @title Convert the data frame into list of numeric nature
#' @param data1 data-frame to be converted into list
#' @return list of numeric vectors
convert<-function(data1){
  data1<- as.data.frame(sapply(data1, as.numeric))
  data1<-as.list(data1)
  return(data1)
}

Try the doebioresearch package in your browser

Any scripts or data that you put into this service are public.

doebioresearch documentation built on July 8, 2020, 7:18 p.m.