Add Object to Slides
Arguments
- object
An object to add to slides
- presentation_id
The id from the Slides presentation
- on
The id or number of the slide to add
object
to- object_id
A unique id for the new object on the slides
- ...
Other arguments used in methods
- overwrite
If TRUE and an object with
object_id
exists it will deleted and replaced.
Examples
if (FALSE) { # interactive()
# \donttest{
s <- choose_slides()
obj <- iris[1:5, ]
add_to_slides(obj, s, on = 1, object_id = "iris_table")
# }
}