print.CGdata {ECG} | R Documentation |
Displays the content of a CGdata object.
## S3 method for class 'CGdata'
print(x, signifDigits=x$input$signifDigits, alpha=x$input$alpha, verbose=FALSE, ...)
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 |
verbose |
a boolean, if FALSE the description of the form |
... |
additional parameters |
No return value, called for displaying purposes/side effect.
H. Gasca-Aragon
objects to See Also as CGdata
,
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)