#'Acquisition of data
#'
#'@description this function permits the users to get the data from a csv file stored in the folder "inst/extdata".
#'Putting this function into the shiny app, it will get the data needed for the package.
#'@example getDataset()
#'
#'@export
getDataset <- function(){
dataset <- read.csv(system.file("extdata", "Provadue.csv", package = "ExpenditureEducation"), sep = ";")
return(dataset)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.