All Projects → BlueSCar → cfb-database

BlueSCar / cfb-database

Licence: MIT license
College football database - data store for all sorts of data and statistics pertaining to college football

Projects that are alternatives of or similar to cfb-database

cfbscrapR
A scraping and aggregating package using the CollegeFootballData API
Stars: ✭ 25 (+19.05%)
Mutual labels:  football-data, college-football
LSTM-footballMatchWinner
This repository contains the code for a conference paper "Predicting the football match winner using LSTM model of Recurrent Neural Networks" that we wrote
Stars: ✭ 44 (+109.52%)
Mutual labels:  football-data
transfermarkt-datasets
⚽️ Extract, prepare and publish Transfermarkt datasets.
Stars: ✭ 60 (+185.71%)
Mutual labels:  football-data
football analytics
⚽📊 A collection of football analytics projects, data, and analysis by Edd Webster (@eddwebster), including a curated list of publicly available resources published by the football analytics community.
Stars: ✭ 405 (+1828.57%)
Mutual labels:  football-data
foot
foot是一个集足球数据采集器,简单分析的项目.AI足球球探为程序全自动处理,全程无人为参与干预足球分析足球预测程序.程序根据各大指数多维度数据,结合作者多年足球分析经验,精雕细琢,集天地之灵气,汲日月之精华,历时七七四十九天,经Bug九九八十一个,编码而成.有兴趣的朋友,可以关注一下公众号AI球探(微信号ai00268).
Stars: ✭ 96 (+357.14%)
Mutual labels:  football-data
sync.soccer
Synchronise event and tracking data using dynamic programming
Stars: ✭ 38 (+80.95%)
Mutual labels:  football-data
angular-footballdata-api-factory
AngularJS Factory for the football-data.org JSON REST API
Stars: ✭ 48 (+128.57%)
Mutual labels:  football-data
worldfootballR
A wrapper for extracting world football (soccer) data from FBref, Transfermark, Understat and fotmob
Stars: ✭ 188 (+795.24%)
Mutual labels:  football-data
nflfastR
A Set of Functions to Efficiently Scrape NFL Play by Play Data
Stars: ✭ 268 (+1176.19%)
Mutual labels:  football-data
epl mysql db
Free/open English Premier League results database from 1993-2017. Dump format is MySQL and sqlite.
Stars: ✭ 26 (+23.81%)
Mutual labels:  football-data
football-graphs
Graphs and passing networks in football.
Stars: ✭ 81 (+285.71%)
Mutual labels:  football-data
FootballDataSwiftUI
Display Football Data such as scores, upcoming match, team standing, top scorers with football Data API and SwiftUI
Stars: ✭ 76 (+261.9%)
Mutual labels:  football-data
mysportsfeeds-api
Feature requests for the MySportsFeeds Sports Data API.
Stars: ✭ 44 (+109.52%)
Mutual labels:  football-data
Football-Analytics-With-Python
A repository for football analytics
Stars: ✭ 28 (+33.33%)
Mutual labels:  football-data

cfb-database

College football database - data store for all sorts of data and statistics pertaining to college football

contents

  1. description
  2. import
  3. data
  4. schema diagram
  5. future
  6. license

description

This is a PostgreSQL database meant for housing all sorts of data pertaining to college football. It is a work-in-progress that aspires to be a comprehensive dataset. It is designed for use in all sorts of data analysis and machine learning.

import

The SQL Dump file can be downloaded from this link.

To restore the dump file, follow the below steps. It is presumed that you have PostgreSQL installed on your machine as the dump file will only work with PostgreSQL.

Please note that you shouldn't have to create any schema or parse out any data. The SQL dump restore tool should do everything for you. You only need to create a blank database and a user with ownership over that database.

If you still have questions or concerns with using the restore tool, here are some steps (copied from the previous post) that have been verified to work.

create an empty databse

Run the following command to create an empty database (if you are on Windows, you may need to cd to the bin folder for Postgres in Program Files).

createdb -T template0 cfb

create user (optional)

It is recommened to create a user named 'reddit' as owner of the database. To do that, go into SQL Shell and run these commands:

CREATE ROLE reddit WITH LOGIN PASSWORD <your password here>;
ALTER ROLE reddit CREATEDB;
GRANT ALL PRIVILEGES ON DATABASE cfb TO reddit;

restore the sql dump

Restore the backup. From bash/cmd/what-have-you, run this command:

psql -U reddit cfb < /path/to/sql/dump/file.sql

data

This is a non-comprehensive list of data currently included. New types of data are frequently being added. The data is current as of the end of the 2017 season and national championship game.

  • game data
  • drive data
  • play by play data
  • team data
    • colors
    • names
  • team talent data
  • player data
    • hometown
    • position
    • height/weight
  • head coach data and records
  • player game statistics
  • team game statistics
  • venue data

diagram

Schema Diagram

future

This is a semi-prioritized non-comprehensive list of planned features.

  • Recruiting data (247 Composite)
  • Player-Play associations
  • Conference and division data
  • Betting lines
  • Weather
  • Accessibility (i.e. public hosting or a public API)
  • Real-time updates

license

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].