Nothing
library(data.table)
x <- rbindlist(
idcol = "path",
lapply(
stats::setNames(file, file),
fread,
sep = ",",
quote = "",
strip.white = FALSE,
na.strings = NULL
)
)
print(x)
a <- head(x)
b <- tail(x)
c <- x[sample(NROW(x), 100), ]
d <- x[payment_type == "UNK", ]
e <- x[, .(mean(tip_amount)), by = payment_type]
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.