seriesPlot Returns a tailored time series plot,
histPlot Returns a tailored histogram plot,
densityPlot Returns a tailored kernel density estimate plot,
qqnormPlot Returns a tailored Normal quantile-quantile plot,
qqnigPlot Returns a tailored NIG quantile-quantile plot.}
Basic Statistic functions are:
basicStats computes an overview of basic statistical values. }
For SPLUS Compatibility:
stdev Returns the standard deviation of a vector or matrix. }seriesPlot(x, type = "l", col = "steelblue", main = x@units, rug = TRUE, ...)
histPlot(x, labels = TRUE, main = x@units, add.fit = TRUE, ...)
densityPlot(x, col = "steelblue", main = x@units, add.fit = TRUE, ...)qqnormPlot(x, labels = TRUE, col = "steelblue", main = x@units, ...)
qqnigPlot(x, labels = TRUE, col = "steelblue", main = x@units, ...)
stdev(x, na.rm = FALSE)
basicStats(x, ci = 0.95)
plot help page."timeSeries" or a numeric vector.*Plot
For the *Plot functions. beside the plot, no other values are
returned.
basicsStats
returns data frame with the following entries and row names:
nobs, NAs, Minimum, Maximum , 1. Quartile, 3. Quartile,
Mean, Median, Sum, SE Mean, LCL Mean, UCL Mean, Variance,
Stdev, Skewness, Kurtosis.## basicStats -
# Simulated Monthly Return Data:
tS = timeSeries(matrix(rnorm(12)), timeCalendar())
# ... must be univariate:
basicStats(tS)Run the code above in your browser using DataLab