Sports Data Sources and Data Extraction Gavin Zhang MIS580 University of Arizona
2 Outline Sports Data Sources –Baseball –Basketball –Football –Olympics –Greyhound Data Extraction –Case Study: AZGreyhound System
3 Baseball Data Source Download the database
4 Data Download This database contains pitching, hitting, and fielding statistics for Major League Baseball from 1871 through –The data are provided in Microsoft Access, CVS and other formats. –The newest version is Version 5.5. The database can be downloaded at:
5 Database Detailed description of the database is available at: The database has 21 tables; main tables include: –MASTER Table- Player names, DOB, and biographical info; –Batting Table- batting statistics; –Pitching Table- pitching statistics; –Fielding Table- fielding statistics. Detailed description about each data field in each table is available. AwardPlayers.csv … …
6 Basketball Data Source Download all of the player and team statistics
7 Data Download The website contains the NBA data from 1947 to 2007 and ABA data from 1968 to 1976 on players, teams, leagues, all-star games, awards, and coaches. Download at: stats_download.htm
8 Database This download contains nine column delimited files (.txt format), each of which represents a table in the database. If you open the files up in excel, you may need to select Data -> Text to Columns, then use the bar ("|") character as the delimiter. Teams.txt team|location|name|leag ANA|Anaheim|Amigos|A AND|Anderson|Duffey Packers|N ATL|Atlanta|Hawks|N BA1|Baltimore|Bullets|N BAL|Baltimore|Bullets|N BOS|Boston|Celtics|N BUF|Buffalo|Braves|N CAP|Capital|Bullets|N CAR|Carolina|Cougars|A CH1|Chicago|Stags|N CH2|Chicago|Zephyrs|N CHA|Charlotte|Hornets|N CHI|Chicago|Bulls|N … …
9 Football Data Source
10 Data Download A copy of data set (in CVS format) can be downloaded from: refernce_CSV.zip This version contains the game data from 1995 to The dataset contains 64,327 players and the games they played in. Tables include: –Masterinformation about players –Seasonsthe statistics of the players records by season –Gamesthe statistics of the players records by game Detailed description about each data field in each table is available.
11 Database … … Master.csv
12 Some Other Football Data Sources –The website contains the National Football League (NFL) data from 1922 to 2005 and Australian Football League (AFL) data from 1960 to 1969 on players, teams, leagues, awards, and coaches. –Data set can not be downloaded directly. The data need to be extracted from the HTML Web pages by using parsing programs. –The website contains the player/coach statistics of NFL from 1920 to present and statistics of AFL from 1960 to –Data set can not be downloaded directly. The data need to be extracted from the HTML Web pages by using parsing programs.
13 Olympics Data Source
14 Data Format DatabaseOlympics.com is your source for every Summer and Winter Olympics medal winner. –Summer Olympics from ; – Winter Olympics You'll find every medal winner for every country with easy links to each Olympics, sports, and athletes.
15 Data Format
16 Greyhound
17 Data Format Data includes daily race programs (videos) and odds charts (.txt file format) for all US Greyhound tracks. Some tracks had both Afternoon and Evening programs.
18 Data Format Chart.txt 1st Grade: B Distance: 550 Condition: Fast DOG WT P O 1/8 Str Fin Time Odds Comment PTL Jane ns Held At Wire Inside Silver Speck ns Cutff 1st, Stayd Cls Jain't It Doug Closed For Show Outs Flyer Whitesocks In The Hunt Flying Detroit Not Far Behind Mdtrk VP Twix Twizala Losing Position Ins Sergio Blocked 1st Turn Heartattack Jack Bumped 1st Turn … … … …
Case Study: AZGreyhound System By Rob Schumaker
20 AZGreyhound System Design AZGreyhound System DB Race Data Odds Data Greyhound Data AZGreyhound Model Building Training / Testing Prediction Win Metrics Accuracy Payout Efficiency Place Show Traditional Betting Engine Exacta Trifecta Superfecta Straight Bets Quiniela Trifecta Superfecta Box Bets
21 Greyhound Data Extraction Grayhound data was gathered from The Web site links to: –GreyMatter –TrackInfo The race and odds data was parsed into a SQL Server database; then the data was sent to the AZGreyhound system for prediction.
22 Example code public void RacePrograms() throws Exception {... String URL1 = " String URL2 = "/Rpages";... OpenConnection2(); try { TrackAbbrev = rSet.getString("TrackAbbrev"); String URL = URL1 + TrackAbbrev + URL2; Feed = web.Scraper(URL, 1);... NumItems = web.NumItems(Feed, "~icons/html.gif"); for(int y = 1; y <= NumItems; y++) { Feed = Feed.substring(Feed.indexOf("~icons/html.gif")); FileName = web.ExtractText(Feed, " "); Feed = Feed.substring(Feed.indexOf("<A HREF=")); FileDate = web.ExtractText(Feed, "NOWRAP>", " "); FileContents = web.Scraper(URL + "/" + FileName, 1); FileContents = FileContents.replaceAll("'", "-"); db.Insert2DBProgram(FileName, FileDate, FileContents); } } CloseConnection2(); } catch(SQLException e) { System.out.println(e); } } This method picks up the overall race information and puts it in the database Data parsing URL Parsing out each data field Insert into DB
23 You can use the sports data sources introduced in this set of slides for your data mining project. You are strongly encouraged to identify other interesting public sports data sets for your project. Thanks!