Select Git revision
CHANGELOG.md
To find the state of this project's repository at the time of any of these versions, check out the tags.
MorettinTb5.1.R 880 B
#' @name MorettinTb5.1
#' @title Série Simulada AR(1)
#' @description Valores de uma série temporal simulada, obtidos com um
#' processo auto-regressivo de ordem 1, AR(1). A tabela é composta de
#' 50 números.
#' @format Uma série temporal (classe \code{ts}), com 50 observações,
#' em que
#'
#' \describe{
#'
#' \item{\code{Zt}}{Número decimal que indica os valores simulados.}
#'
#' }
#' @keywords TS temporais
#' @source MORETTIN, TOLOI (2006), Tabela 5.1, pág. 111.
#' @examples
#'
#' data(MorettinTb5.1)
#'
#' library(lattice)
#' str(MorettinTb5.1)
#'
#' fivenum(MorettinTb5.1)
#'
#' xyplot(MorettinTb5.1, type = c("l", "g"),
#' xlab = "Tempo", ylab = "Observações",
#' main = "Série simulada AR(1)", strip = strip.custom(bg = "white"),
#' lwd = 2, col = "violetred",
#' scales = list(y = list(rot = 0)))
NULL