#' read_sheet
#'
#' @description read dataframe from google sheets
#'
#' @param sheet_name The name of the sheet to read
#' @return dataframe from the given sheet name
#'
#' @noRd
read_gsheet <- function(sheet_name){
ssid <- get_gsheet_spec()
data <- googlesheets4::read_sheet(ssid,sheet = sheet_name)
return(data)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.