bb.db {nutshell} | R Documentation |
The Baseball Databank Database is a SQLite database containing statistics on each player and team in Major League Baseball from 1871 through 2008.
con <- dbConnect(drv, system.file("data", "bb.db", package="nutshell"))
The format is: NULL
This file is used as an example in the book "R in a Nutshell" from O'Reilly Media.
http://www.baseball-databank.org/
library(RSQLite) drv <- dbDriver("SQLite") con <- dbConnect(drv, system.file("data", "bb.db", package="nutshell")) dbListTables(con)