print.data.playback {recorder} | R Documentation |
Print Data Playback
## S3 method for class 'data.playback'
print(x, ...)
x |
A 'data.playback' object. |
... |
further arguments passed to or from other methods. |
The original object (invisibly)
# record tape from `iris`.
tape <- record(iris)
# load data.
data(iris_newdata)
# validate new data by playing new tape on it.
playback <- play(tape, iris_newdata)
# print it.
print(playback)