#Function for loading excel data from QuantStudio output
#' Import and Process Initial Raw Excel Data
#'
#' Takes QuantStudio output excel file and loads into df parsing CT as numeric
#'
#' @return data frame
#' @importFrom readxl read_excel
#' @importFrom here here
#'
#' @examples
#' load_raw()
#'
#' @export
load_raw <- function(path, sheet, cell_range) {
df_raw <- readxl::read_excel(path = here::here(path), sheet = sheet, range = cell_range)
df_raw$Cq <- as.numeric(as.character(df_raw$Cq))
df_raw
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.