#' tsConvertPACF
#'
#' @description Returns PACF of time series of the data
#'
#' @param data Data for analysis
#'
#' @return PACF of time series of the data
#' @export
#'
#' @examples
#' tsConvertPACF
tsConvertPACF = function(data=rnorm(30,10,2)) {
ts = ts(data)
pacf = pacf(ts)
return(pacf)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.