##' read csv data that is written to be read by nonmem
##' @param file The file to read. Must be pure text.
##' @param na.strings See read.table
##' @param header See read.table.
##' @param stringsAsFactors See read.table.
##' @param ... passed to read.csv
##' @details This is just a shortcut to read.csv so you don't have to remember
##' how to read the data that was exported for nonmem.
##' @importFrom utils read.csv
##' @family Nonmem
NMreadCsv <- function(file,na.strings=".",header=TRUE,stringsAsFactors=FALSE,...){
read.csv(file=file,na.strings=na.strings,header=header,stringsAsFactors=stringsAsFactors,...)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.