print.CGdata {ECG}R Documentation

Displays the content of a CGdata object

Description

Displays the content of a CGdata object.

Usage

## S3 method for class 'CGdata'
print(x, signifDigits=x$input$signifDigits, alpha=x$input$alpha, verbose=FALSE, ...)

Arguments

x

a CGdata object.

signifDigits

a numeric value for the number of significant digits.

alpha

a probability value taken as the significance level for building a symmetric confidence interval assuming a t distribution for
x$frame$used.data.points-1 degrees of freedom.

verbose

a boolean, if FALSE the description of the form
(value, expanded uncertainty) is provided. if TRUE the description is complemented providing:
the estimated coverage factor,
the estimated degrees of freedom,
the estimated coverage probability.

...

additional parameters

Value

No return value, called for displaying purposes/side effect.

Author(s)

H. Gasca-Aragon

See Also

objects to See Also as CGdata,

Examples

require(ECG)

N<- 1000
set.seed(12345)
d1<- 1-sin(seq(1:(5/2*N))/N*pi-pi*3/4)+rnorm(5/2*N, 0, 0.01)
dat<- data.frame(x=1:length(d1), 
	y=100*(d1-min(d1))/(max(d1)-min(d1)))

CGres<- CGdata(dat)
CGres
print(CGres)

[Package ECG version 0.5.2 Index]