deb {dynpred} | R Documentation |
Debugging function
Description
A simple but useful debugging function. It first announces the object to printed and then prints it.
Usage
deb(x, method = c("print", "cat"))
Arguments
x |
The object to be printed |
method |
The method for printing |
Author(s)
Hein Putter H.Putter@lumc.nl
Examples
tm <- c(0.2,0.5,1,1.2,1.8,4)
ta <- 2*tm
dfr <- data.frame(time=tm, stepf=ta)
deb(dfr, method="print")
deb(tm, method="cat")
[Package dynpred version 0.1.2 Index]