Skip to content

cdalzell/Lahman

Repository files navigation

Lahman

Project Status: Active - The project has reached a stable, usable state and is being actively developed. Travis build status License

R Library for Sean Lahman's Baseball Database

Version: 11.0-0 Date: 2023-04-16

Authors:

  • Chris Dalzell
  • Michael Friendly
  • Dennis Murphy
  • Martin Monkman
  • Vanessa Foot & Justeena Zaki-Azat [vignettes]

Maintainer: Chris Dalzell

Copyright: Sean Lahman

Required: R (>= 3.5.0)

URL: https://CRAN.R-project.org/package=Lahman

Current Version

This is the R version of the 2022 edition of Sean Lahman's Baseball Database, https://www.seanlahman.com/baseball-archive/statistics/.

  • It now fully reflects the reorganization of data tables in Lahman's source, the most notable was the renaming of the old Master table, to People in the Lahman Database.

The current database schema is shown in the figure below:

  • A collection of vignettes has been added, illustrating various data manipulation tasks and analyses to explore some baseball questions. Try: browseVignettes("Lahman")

  • In addition, the documentation has been updated to use dplyr and tidyr tools for database manipulation and ggplot2 for plots.

Installation

For the current CRAN version, simply use:

install.packages("Lahman")

If you wish to use a non-release version of Lahman, use dev_mode().

dev_mode()
install_github("cdalzell/Lahman", ref="insert_branch_name_here")
#  ...test ...
dev_mode()  # revert to previous

Please report any problems or issues with this new version as an issue on this site.

Related