Last chance! 50% off unlimited learning
Sale ends in
src_local(tbl, pkg = NULL, env = NULL)src_df(pkg = NULL, env = NULL)
src_dt(pkg = NULL, env = NULL)
tbl
objectssrc_local
should not be called directly, but instead
one of the (currently three) constructors should be used.if (require("Lahman")) {
src_dt("Lahman")
src_df("Lahman")
batting_df <- tbl(src_df("Lahman"), "Batting")
batting_dt <- tbl(src_dt("Lahman"), "Batting")
}
Run the code above in your browser using DataLab