Learn R Programming

recorder (version 0.8.2)

print.data.playback: Print Data Playback

Description

Print Data Playback

Usage

# S3 method for data.playback
print(x, ...)

Arguments

x

A `data.playback` object.

...

further arguments passed to or from other methods.

Value

The original object (invisibly)

Examples

Run this code
# NOT RUN {
# 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)
# }

Run the code above in your browser using DataLab