#' Tidy CREST data ready for stats creation.
#' @param x untidy CREST dataframe
#' @return Tidy CREST dataframe
#' @examples
#' tidyCrest(df)
#' @export
tidyCrest <- function(x){
tidyr::gather(x, variable, value, all_receipts:all_outstanding)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.