print.data.playback {recorder} | R Documentation |
Print Data Playback
Description
Print Data Playback
Usage
## S3 method for class 'data.playback'
print(x, ...)
Arguments
x |
A 'data.playback' object. |
... |
further arguments passed to or from other methods. |
Value
The original object (invisibly)
Examples
# 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)
[Package recorder version 0.8.2 Index]