print.DBH | R Documentation |
DBH
objectsPrinting method for DBH
objects
## S3 method for class 'DBH'
print(x, ...)
x |
an object of class |
... |
optional arguments, see details |
The print method has the following optional parameters:
criticalValue
A numeric denoting a custom critical value of the test.
alpha
A numeric denoting the confidence level of the test. The alpha value is passed on to getCriticalValues
.
The default value is 0.95
Emil Sjoerup
## Not run:
DBH <- driftBursts(sampleTDataEurope, testTimes = seq(32400 + 900, 63000, 300), preAverage = 2,
ACLag = -1L, meanBandwidth = 300L, varianceBandwidth = 900L)
print(DBH)
print(DBH, criticalValue = 1) # This value doesn't make sense - don't actually use it!
print(DBH, alpha = 0.95) # 5% confidence level - this is the standard
print(DBH, alpha = 0.99) # 1% confidence level
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.