Description Format Details Source Examples
The Baseball Databank Database is a SQLite database containing statistics on each player and team in Major League Baseball from 1871 through 2008.
The file is a SQLLite database
This file is used as an example in the book "R in a Nutshell" from O'Reilly Media.
Note: the file is in the "inst/extdata" directory inside the package, not the "data" directory.
http://www.baseball-databank.org/
1 2 3 4 | library(RSQLite)
drv <- dbDriver("SQLite")
con <- dbConnect(drv, system.file("extdata","bb.db", package="nutshell.bbdb"))
dbListTables(con)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.