bb.db {nutshell}R Documentation

2008 Baseball Databank Database

Description

The Baseball Databank Database is a SQLite database containing statistics on each player and team in Major League Baseball from 1871 through 2008.

Usage

con <- dbConnect(drv, system.file("data", "bb.db", package="nutshell"))

Format

The format is: NULL

Details

This file is used as an example in the book "R in a Nutshell" from O'Reilly Media.

Source

http://www.baseball-databank.org/

Examples

library(RSQLite)
drv <- dbDriver("SQLite")
con <- dbConnect(drv, system.file("data", "bb.db", package="nutshell"))
dbListTables(con)


[Package nutshell version 1.0 Index]