print.CGr {ECG}R Documentation

Displays the content of a CGr object

Description

Displays the content of a CGr object.

Usage

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

Arguments

x

a CGr 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.

Author(s)

H. Gasca-Aragon

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)
d2<- 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), 
	y1=100*(d1-min(d1))/(max(d1)-min(d1)),
	y2=100*(d2-min(d2))/(max(d2)-min(d2))
)
CGres<- CGr(dat, columns=c(2,3))
print(CGres)

[Package ECG version 0.5.2 Index]