deb {dynpred} | R Documentation |
A simple but useful debugging function. It first announces the object to printed and then prints it.
deb(x, method = c("print", "cat"))
x |
The object to be printed |
method |
The method for printing |
Hein Putter H.Putter@lumc.nl
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")