Nothing
as_unknown_rows <- function(x) {
x <- as_tbl(x)
class(x) <- c("unknown_rows", "tbl")
x
}
local_unknown_rows <- function(frame = caller_env()) {
local_methods(
.frame = frame,
as.data.frame.unknown_rows = function(x, ...) {
class(x) <- "data.frame"
x
},
dim.unknown_rows = function(x) {
c(NA_integer_, length(x))
},
head.unknown_rows = function(x, n) {
class(x) <- "data.frame"
head(x, n)
}
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.