summary.cardiFit | R Documentation |
This function is a top-level function to extract main results from
cardinal date objects fitted with fitweibull4
or fitweibull6
.
## S3 method for class 'cardiFit'
summary(object, xmin = 0, xmax = 365, quantile = 0.05, symmetric = FALSE, ...)
object |
an object resulting from a call to |
xmin |
left boundary (in day of year) of the integral under the curve |
xmax |
right boundary (in day of year) of the integral under the curve |
quantile |
two-sided quantile (percentage of integral) which defines beginning and end of the peak, |
symmetric |
if ( |
... |
for compatibility only. |
See CDW
fro a detailed description of function parameters.
weibull4
,
weibull6
,
fitweibull
,
peakwindow
,
cardidates
## create some test data
set.seed(123)
x <- seq(0, 360, length = 20)
y <- abs(rnorm(20, mean = 1, sd = 0.1))
y[5:10] <- c(2, 4, 7, 3, 4, 2)
## fit Weibull function with 6 free parameters
res <- fitweibull6(x, y)
## see the results
plot(res)
summary(res)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.