Merge branch 'master' of https://github.com/fivethirtyeight/data
This commit is contained in:
@@ -4,6 +4,10 @@ We hope you'll use it to check our work and to create stories and visualizations
|
||||
|
||||
Article Date(s) | Headline(s) | Folder
|
||||
---|---------|-------------
|
||||
March 15, 2015 | [FiveThirtyEight’s 2015 NCAA Tournament Predictions](http://fivethirtyeight.com/interactives/march-madness-predictions-2015/#mens) | `march-madness-predictions-2015`
|
||||
Feb. 18, 2015 | [Every NBA Team’s Chance Of Winning In Every Minute Across Every Game](https://fivethirtyeight.com/features/every-nba-teams-chance-of-winning-in-every-minute-across-every-game/) | `nba-winprobs`
|
||||
Jan. 30, 2015 | [Who Will Run For President: Romney Is Out](http://fivethirtyeight.com/datalab/romney-not-running-for-president) | `potential-candidates`
|
||||
Jan. 14, 2015 | [Looking For Clues: Who Is Going To Run For President In 2016?](http://fivethirtyeight.com/datalab/2016-president-who-is-going-to-run) | `potential-candidates`
|
||||
Dec. 30, 2014 | [Who Goes To Meaningless NFL Games And Why?](http://fivethirtyeight.com/datalab/who-goes-to-meaningless-nfl-games-and-why/) | `nfl-ticket-prices`
|
||||
Nov. 20, 2014 | [Dear Mona, What’s The Most Common Name In America?](http://fivethirtyeight.com/features/whats-the-most-common-name-in-america/) | `most-common-name`
|
||||
Nov. 7, 2014 | [Most Pollsters We Surveyed Say Polling Did Well This Year](http://fivethirtyeight.com/features/most-pollsters-we-surveyed-say-polling-did-well-this-year/) | `poll-of-pollsters`
|
||||
@@ -38,4 +42,4 @@ April 14, 2014 | [A Statistical Analysis of the Work of Bob Ross](http://fivethi
|
||||
April 11, 2014 | [Where Are America’s Librarians?](http://fivethirtyeight.com/datalab/where-are-americas-librarians) | `librarians`
|
||||
April 1, 2014 | [The Dollar-And-Cents Case Against Hollywood’s Exclusion of Women](http://fivethirtyeight.com/features/the-dollar-and-cents-case-against-hollywoods-exclusion-of-women) | `bechdel`
|
||||
March 27, 2014 | [The NCAA Bracket: Checking Our Work](http://fivethirtyeight.com/datalab/the-ncaa-bracket-checking-our-work) | `historical-ncaa-forecasts`
|
||||
March 17, 2014 | [FiveThirtyEight’s NCAA Tournament Predictions](http://fivethirtyeight.com/interactives/march-madness-predictions) | `march-madness-predictions`
|
||||
March 17, 2014 | [FiveThirtyEight’s NCAA Tournament Predictions](http://fivethirtyeight.com/interactives/march-madness-predictions) | `march-madness-predictions`
|
||||
@@ -1,6 +1,6 @@
|
||||
### Airline safety data
|
||||
|
||||
The raw data behind the story, [Should Travelers Avoid Flying Airlines That Have Had Crashes in the Past?](http://fivethirtyeight.com/features/should-travelers-avoid-flying-airlines-that-have-had-crashes-in-the-past/)
|
||||
The raw data behind the story [Should Travelers Avoid Flying Airlines That Have Had Crashes in the Past?](http://fivethirtyeight.com/features/should-travelers-avoid-flying-airlines-that-have-had-crashes-in-the-past/)
|
||||
|
||||
Header | Definition
|
||||
---|---------
|
||||
@@ -13,4 +13,4 @@ Header | Definition
|
||||
`fatal_accidents_00_14` | Total number of fatal accidents, 2000–2014
|
||||
`fatalities_00_14` | Total number of fatalities, 2000–2014
|
||||
|
||||
All data comes from the [Aviation Safety Network's Database](http://aviation-safety.net/index.php).
|
||||
Source: [Aviation Safety Network](http://aviation-safety.net)
|
||||
|
||||
@@ -1,46 +0,0 @@
|
||||
This repo contains the data and code for FiveThirtyEight's story on earnings of college majors.
|
||||
All data is from American Community Survey 2010-2012 Public Use Microdata Series.
|
||||
Download data here: http://www.census.gov/acs/www/data_documentation/pums_data/
|
||||
Documentation here: http://www.census.gov/acs/www/data_documentation/pums_documentation/
|
||||
|
||||
college-majors-rscript.R:
|
||||
- My R script for parsing the data.
|
||||
- Assumes you've already downloaded the data and selected only records with non-NA values for college major (FOD1P)
|
||||
- Outputs data to csv
|
||||
|
||||
majors-list.csv:
|
||||
- List of majors with their FOD1P codes and major categories.
|
||||
- Major categories are from Carnevale et al, "What's It Worth?: The Economic Value of College Majors." Georgetown University Center on Education and the Workforce, 2011. http://cew.georgetown.edu/whatsitworth
|
||||
|
||||
Three data files:
|
||||
- all-ages.csv
|
||||
- recent-grads.csv (ages <28)
|
||||
- grad-students.csv (ages 25+)
|
||||
All contain basic earnings and labor force information.
|
||||
recent-grads contains more detailed breakdown, including by sex and by the type of job they got. Full headers below.
|
||||
grad-students contains details on graduate school attendees.
|
||||
|
||||
Headers for recent-grads.csv
|
||||
Header | Description
|
||||
---|---------|
|
||||
Rank | Rank by median earnings
|
||||
Major_code | Major code, FO1DP in ACS PUMS
|
||||
Major | Major description
|
||||
Major_category | Category of major from Carnevale et al
|
||||
Total | Total number of people with major
|
||||
Sample_size | Sample size (unweighted) of full-time, year-round ONLY (used for earnings)
|
||||
Men | Male graduates
|
||||
Women | Female graduates
|
||||
ShareWomen | Women as share of total
|
||||
Employed | Number employed (ESR == 1 or 2)
|
||||
Full_time | Employed 35 hours or more
|
||||
Part_time | Employed less than 35 hours
|
||||
Full_time_year_round | Employed at least 50 weeks (WKW == 1) and at least 35 hours (WKHP >= 35)
|
||||
Unemployed | Number unemployed (ESR == 3)
|
||||
Unemployment_rate | Unemployed / (Unemployed + Employed)
|
||||
Median | Median earnings of full-time, year-round workers
|
||||
P25th | 25th percentile of earnigns
|
||||
P75th | 75th percentile of earnings
|
||||
College_jobs | Number with job requiring a college degree
|
||||
Non_college_jobs | Number with job not requiring a college degree
|
||||
Low_wage_jobs | Number in low-wage service jobs
|
||||
@@ -46,4 +46,4 @@ Header | Description
|
||||
`P75th` | 75th percentile of earnings
|
||||
`College_jobs` | Number with job requiring a college degree
|
||||
`Non_college_jobs` | Number with job not requiring a college degree
|
||||
`Low_wage_jobs` | Number in low-wage service jobs
|
||||
`Low_wage_jobs` | Number in low-wage service jobs
|
||||
@@ -4,7 +4,7 @@ The raw data behind the story [Comic Books Are Still Made By Men, For Men And Ab
|
||||
|
||||
The data comes from [Marvel Wikia](http://marvel.wikia.com/Main_Page) and [DC Wikia](http://dc.wikia.com/wiki/Main_Page). Characters were scraped on August 24. Appearance counts were scraped on September 2. The month and year of the first issue each character appeared in was pulled on October 6.
|
||||
|
||||
The data is split into two files, for DC and Marvel, respetively: `dc-wikia-data.csv` and `marvel-wikia-data.csv`. Each file has the following variables:
|
||||
The data is split into two files, for DC and Marvel, respectively: `dc-wikia-data.csv` and `marvel-wikia-data.csv`. Each file has the following variables:
|
||||
|
||||
Variable | Definition
|
||||
---|---------
|
||||
@@ -20,4 +20,4 @@ Variable | Definition
|
||||
`ALIVE` | If the character is alive or deceased
|
||||
`APPEARANCES` | The number of appareances of the character in comic books (as of Sep. 2, 2014. Number will become increasingly out of date as time goes on.)
|
||||
`FIRST APPEARANCE` | The month and year of the character's first appearance in a comic book, if available
|
||||
`YEAR` | The year of the character's first appearance in a comic book, if available
|
||||
`YEAR` | The year of the character's first appearance in a comic book, if available
|
||||
|
||||
7
democratic-bench/README.md
Normal file
7
democratic-bench/README.md
Normal file
@@ -0,0 +1,7 @@
|
||||
### Democratic bench
|
||||
|
||||
Header | Definition
|
||||
---|---------
|
||||
`cand` | Candidate
|
||||
`raised_exp` | Amount the candidate was expected to raise
|
||||
`raised_act` | Amount the candidate actually raised
|
||||
1
democratic-bench/democratic-bench.csv
Normal file
1
democratic-bench/democratic-bench.csv
Normal file
@@ -0,0 +1 @@
|
||||
cand,raised_exp,raised_act
|
||||
|
4
march-madness-predictions-2015/README.md
Normal file
4
march-madness-predictions-2015/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
March Madness Predictions 2015
|
||||
==============================
|
||||
|
||||
Data files for [FiveThirtyEight's 2015 March Madness Predictions](http://fivethirtyeight.com/interactives/march-madness-predictions-2015/), updated each time we calculate new odds.
|
||||
69
march-madness-predictions-2015/mens/bracket-00-no-moore.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-00-no-moore.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.995996345 0.937546675458 0.852838351494 0.72300998873 0.528665370009 0.405875296405 1.46381095095 2015-03-15 20:22:18.110000
|
||||
2363 Manhattan 16a Midwest 1 1 0.72724187822 0.00373847077376 0.000801983046109 0.000192671007582 3.44416562665e-05 3.40690233698e-06 4.87135226881e-07 2052817.07765 2015-03-15 20:22:18.110000
|
||||
2261 Hampton 16b Midwest 1 1 0.27275812178 0.000265184226487 2.61624075959e-05 3.04003661609e-06 2.56308690206e-07 1.19887416368e-08 9.13442153811e-10 1094760073.11 2015-03-15 20:22:18.110000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.536832244095 0.0354890378024 0.0178963202943 0.00719291753119 0.00206908883061 0.000726009474191 1376.39249355 2015-03-15 20:22:18.110000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.463167755905 0.0261361412855 0.0125853408363 0.0047992991691 0.00138846336789 0.000490192588872 2039.01452225 2015-03-15 20:22:18.110000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.673966410629 0.387739427642 0.0531554509122 0.0247440424752 0.00732958046755 0.00262538379006 379.896691671 2015-03-15 20:22:18.110000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.326033589371 0.13682353685 0.0107141959466 0.00359098344475 0.000678443601091 0.000166456389607 6006.57953697 2015-03-15 20:22:18.110000
|
||||
120 Maryland 4 Midwest 0 1 1 0.724718914367 0.385231229897 0.047578416723 0.0208791473587 0.00577719929876 0.00195270001962 511.111430303 2015-03-15 20:22:18.110000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.275281085633 0.0902058056107 0.0050362127492 0.00135833500431 0.000258207922243 6.38818726752e-05 15652.8930079 2015-03-15 20:22:18.110000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.179016182381 0.0746112555999 0.0121537556534 0.00454624873434 0.00199226724777 500.9406915 2015-03-15 20:22:18.110000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.234623065768 0.101877681087 0.0175286790425 0.00550064323499 0.00207315668117 481.356210259 2015-03-15 20:22:18.110000
|
||||
87 Notre Dame 3 Midwest 0 1 1 0.899272913857 0.56566001617 0.309652336147 0.074197698462 0.0304489914837 0.0143520274893 68.6765666555 2015-03-15 20:22:18.110000
|
||||
111 Northeastern 14 Midwest 0 1 1 0.100727086143 0.0207007356811 0.00330186981255 0.000171943942288 1.65235221067e-05 2.28661994045e-06 437325.72068 2015-03-15 20:22:18.110000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.724504722356 0.335595221748 0.163124486689 0.0317077649034 0.0110641226075 0.00455483330905 218.547002524 2015-03-15 20:22:18.110000
|
||||
84 Indiana 10 Midwest 0 1 1 0.275495277644 0.0759374909645 0.0286623319001 0.00394154753179 0.00118314721737 0.000431353260896 2317.28547656 2015-03-15 20:22:18.110000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.906659008791 0.569521670262 0.31535071894 0.0744959962091 0.0308989791532 0.0146951175966 67.0498126965 2015-03-15 20:22:18.110000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.0933409912086 0.0189456170251 0.00341931982406 0.000193202576919 2.30857659255e-05 3.85413574204e-06 259460.541298 2015-03-15 20:22:18.110000
|
||||
275 Wisconsin 1 West 0 1 1 0.985241681854 0.857781050953 0.630826889234 0.325005253313 0.14686306011 0.0951428280416 9.51051372535 2015-03-15 20:22:18.110000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.014758318146 0.00290637444394 0.000375884558871 2.39111485077e-05 1.29133462697e-06 1.57281354132e-07 6358031.7466 2015-03-15 20:22:18.110000
|
||||
2483 Oregon 8 West 0 1 1 0.406162942243 0.0460299632624 0.0193103328342 0.0046539912952 0.000557323989775 0.000131725176009 7590.56320985 2015-03-15 20:22:18.110000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593837057757 0.0932826113407 0.0371216376987 0.00836435069402 0.00130965198145 0.000385063016625 2595.9775253 2015-03-15 20:22:18.110000
|
||||
8 Arkansas 5 West 0 1 1 0.761814115451 0.273810230488 0.072815886081 0.0196404078493 0.00397272416429 0.00142964636402 698.473677663 2015-03-15 20:22:18.110000
|
||||
2747 Wofford 12 West 0 1 1 0.238185884549 0.0404001179749 0.00347624824473 0.000341699674529 2.91332871632e-05 5.21333762216e-06 191814.698977 2015-03-15 20:22:18.110000
|
||||
153 North Carolina 4 West 0 1 1 0.86809628883 0.63765811332 0.230312995033 0.0819783992437 0.0247532644461 0.0120657346406 81.879329754 2015-03-15 20:22:18.110000
|
||||
108 Harvard 13 West 0 1 1 0.13190371117 0.0481315382172 0.00576012631615 0.000761170153335 8.13099675935e-05 1.75712169742e-05 56910.2544377 2015-03-15 20:22:18.110000
|
||||
2752 Xavier 6 West 0 1 1 0.575695334911 0.264803189838 0.0455599201925 0.0121516859551 0.00271222617154 0.00105618681115 945.8022034 2015-03-15 20:22:18.110000
|
||||
252 Brigham Young 11a West 1 1 0.4377749582 0.169717094717 0.0619884395089 0.0131727534705 0.00420760835398 0.0006590996664 0.000195028581073 5126.45359935 2015-03-15 20:22:18.110000
|
||||
145 Ole Miss 11b West 1 1 0.5622250418 0.254587570371 0.107762289316 0.0163352469334 0.00394490399922 0.000649181826027 0.000199694946579 5006.6379855 2015-03-15 20:22:18.110000
|
||||
239 Baylor 3 West 0 1 1 0.757095535169 0.473043357965 0.125625854175 0.0475954486811 0.0106722837452 0.0041535585572 239.757409876 2015-03-15 20:22:18.110000
|
||||
2247 Georgia State 14 West 0 1 1 0.242904464831 0.0924027233711 0.00821291011904 0.00126304750325 0.000140632990499 3.14116879161e-05 31834.2838177 2015-03-15 20:22:18.110000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.362927784624 0.0463714857145 0.0209753355522 0.00537683317879 0.000993136149366 0.000334340690218 2989.96110422 2015-03-15 20:22:18.110000
|
||||
194 Ohio State 10 West 0 1 1 0.637072215376 0.129498237117 0.0736272264032 0.0257833501566 0.00719273281874 0.00331836294323 300.353413447 2015-03-15 20:22:18.110000
|
||||
12 Arizona 2 West 0 1 1 0.993212617177 0.823463619588 0.696405059433 0.458903090625 0.169561279925 0.095349780307 9.48770114394 2015-03-15 20:22:18.110000
|
||||
2640 Texas Southern 15 West 0 1 1 0.0067873828228 0.000666657580486 8.56937211628e-05 4.84817511893e-06 1.53318920253e-07 1.17215371274e-08 85313041.9164 2015-03-15 20:22:18.110000
|
||||
150 Duke 1 South 0 1 1 0.973349551598 0.836283145993 0.551675556508 0.324143076158 0.162638172846 0.0574548650633 16.4049664706 2015-03-15 20:22:18.110000
|
||||
2454 North Florida 16a South 1 1 0.51491476512 0.0169864486523 0.00473267412431 0.000763911958919 0.000100102210644 9.62977693537e-06 5.84069968197e-07 1712122.64006 2015-03-15 20:22:18.110000
|
||||
2523 Robert Morris 16b South 1 1 0.48508523488 0.00966399974928 0.00207424594598 0.000268422848438 2.79722702316e-05 2.91403864186e-06 1.92756851107e-07 5187882.04672 2015-03-15 20:22:18.110000
|
||||
21 San Diego State 8 South 0 1 1 0.582330277458 0.101396400239 0.0444869322886 0.016665778865 0.00429774475595 0.000718695070518 1390.41068448 2015-03-15 20:22:18.110000
|
||||
2599 St. John's 9 South 0 1 1 0.417669722542 0.0555135336978 0.0162412875688 0.00394242493566 0.000880037417233 0.000126613992156 7897.02124529 2015-03-15 20:22:18.110000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623397695131 0.274607704497 0.135419633754 0.049658072375 0.0121798769606 81.1026356205 2015-03-15 20:22:18.110000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.081477720355 0.0252678645212 0.00918158878445 0.00192507077389 0.000258187912966 3872.14800492 2015-03-15 20:22:18.110000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.262001675688 0.0840055670034 0.0313141774627 0.00980744842735 0.00202634469744 492.49945311 2015-03-15 20:22:18.110000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331229088261 0.00268275280584 0.000285559525894 2.14176428428e-05 9.96757460549e-07 1003252.08772 2015-03-15 20:22:18.110000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.631476036368 0.236134051934 0.0997464264714 0.0418606289042 0.0118474731568 0.00218655367134 456.34070611 2015-03-15 20:22:18.110000
|
||||
26 UCLA 11 South 0 1 1 0.368523963632 0.100662594495 0.0291721149477 0.00862955306238 0.00183420285396 0.000249708219512 4003.67394287 2015-03-15 20:22:18.110000
|
||||
66 Iowa State 3 South 0 1 1 0.907874026465 0.639438293228 0.316084096126 0.15351178493 0.0647079966364 0.0186348673663 52.6628450498 2015-03-15 20:22:18.110000
|
||||
5 UAB 14 South 0 1 1 0.0921259735355 0.0237650603433 0.00317655827015 0.00046337704066 5.31823746592e-05 3.83053325535e-06 261059.258021 2015-03-15 20:22:18.110000
|
||||
2294 Iowa 7 South 0 1 1 0.623807543802 0.138431725133 0.061253398382 0.0236832259562 0.00816865948841 0.00188443770301 529.662275756 2015-03-15 20:22:18.110000
|
||||
2166 Davidson 10 South 0 1 1 0.376192456198 0.0567096662997 0.0206013085173 0.00650622072002 0.00179989797294 0.000326558363782 3061.23974305 2015-03-15 20:22:18.110000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974285052251 0.799718508068 0.469326586162 0.244195577122 0.102778684111 0.0294729688272 32.9293949607 2015-03-15 20:22:18.110000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257149477495 0.00514010049906 0.000639511123842 6.93182988869e-05 6.36340297964e-06 3.6652742853e-07 2728307.77626 2015-03-15 20:22:18.110000
|
||||
222 Villanova 1 East 0 1 1 0.984948128171 0.83872531352 0.698831521841 0.453593537937 0.282055448061 0.108081086365 8.25231262596 2015-03-15 20:22:18.110000
|
||||
322 Lafayette 16 East 0 1 1 0.0150518718295 0.00263938215046 0.000549217913626 5.25465444157e-05 4.82634066141e-06 1.91758385142e-07 5214894.81412 2015-03-15 20:22:18.110000
|
||||
152 North Carolina State 8 East 0 1 1 0.586285390231 0.103743887687 0.0551842462381 0.0178104321044 0.00621994011539 0.00111401178425 896.656572526 2015-03-15 20:22:18.110000
|
||||
99 LSU 9 East 0 1 1 0.413714609769 0.0548914166432 0.0252363233558 0.00666178249287 0.00210683071266 0.000335429012992 2980.25672278 2015-03-15 20:22:18.110000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752640985804 0.425269241608 0.10095080671 0.0340105160269 0.0134980223759 0.00282937826311 352.434538265 2015-03-15 20:22:18.110000
|
||||
2751 Wyoming 12 East 0 1 1 0.247359014196 0.0827565683066 0.00673882883997 0.000910081703558 0.000155890419965 1.21869193217e-05 82054.1916035 2015-03-15 20:22:18.110000
|
||||
97 Louisville 4 East 0 1 1 0.754857085264 0.414168947132 0.107027332699 0.038685084264 0.0173779671736 0.00427563465816 232.88340678 2015-03-15 20:22:18.110000
|
||||
300 UC Irvine 13 East 0 1 1 0.245142914736 0.0778052429533 0.00548172240226 0.000650897023639 9.96655676499e-05 6.87351804453e-06 145484.905983 2015-03-15 20:22:18.110000
|
||||
2507 Providence 6 East 0 1 1 0.525497624121 0.211725159685 0.0656956283033 0.0210206932139 0.00715989650362 0.00124236603167 803.915761143 2015-03-15 20:22:18.110000
|
||||
68 Boise State 11a East 1 1 0.265430425497 0.0966888913447 0.0283928937913 0.00523771108112 0.00107042233893 0.00029533375627 4.03609104036e-05 24775.4480533 2015-03-15 20:22:18.110000
|
||||
2168 Dayton 11b East 1 1 0.734569574503 0.377813484535 0.158123445602 0.0374408952726 0.00945021405609 0.00345638911214 0.000658512866658 1517.57321342 2015-03-15 20:22:18.110000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.580737454913 0.213597758216 0.0792806726322 0.0378717968342 0.0100765126835 98.2406829035 2015-03-15 20:22:18.110000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0210210460082 0.00245141425829 0.000335509475731 4.63474533207e-05 2.86186609373e-06 349421.358437 2015-03-15 20:22:18.110000
|
||||
127 Michigan State 7 East 0 1 1 0.648428051645 0.184282925243 0.105687187842 0.040534903371 0.020043767036 0.00560824931611 177.30876333 2015-03-15 20:22:18.110000
|
||||
61 Georgia 10 East 0 1 1 0.351571948355 0.0653184975885 0.0255432309669 0.00616629907947 0.002081367514 0.000359113871011 2783.63206443 2015-03-15 20:22:18.110000
|
||||
258 Virginia 2 East 0 1 1 0.965228939506 0.743892729809 0.543151221128 0.289638790632 0.187067637338 0.0760082293603 12.1564701404 2015-03-15 20:22:18.110000
|
||||
2057 Belmont 15 East 0 1 1 0.0347710604942 0.00650584735921 0.00119495293091 0.000127617104569 2.1905634732e-05 1.73207273134e-06 577341.961358 2015-03-15 20:22:18.110000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-00.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-00.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.996026152425 0.937879089647 0.853521683308 0.724071959813 0.529663054708 0.407023645321 1.45685972178 2015-03-16 12:46:10.810000
|
||||
2363 Manhattan 16a Midwest 1 1 0.72724187822 0.00371094711646 0.000796301610425 0.000191339864198 3.42083218415e-05 3.37806706361e-06 4.83193400413e-07 2069563.69013 2015-03-16 12:46:10.810000
|
||||
2261 Hampton 16b Midwest 1 1 0.27275812178 0.000262900458427 2.59465624113e-05 3.01563868047e-06 2.54295693646e-07 1.18722073705e-08 9.04960039582e-10 1105021167.08 2015-03-16 12:46:10.810000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0353107235328 0.017808426906 0.00715824732082 0.00205646948617 0.000721773328585 1384.47652067 2015-03-16 12:46:10.810000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0259879386474 0.0125142708117 0.00477213400672 0.00137867274261 0.00048681739932 2053.15829713 2015-03-16 12:46:10.810000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.673966410629 0.387736411054 0.05292459112 0.024638310085 0.00728888898402 0.00261146047455 381.92748818 2015-03-16 12:46:10.810000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.326033589371 0.136821594692 0.0106608545657 0.00357334559817 0.000674084064267 0.000165432066687 6043.77729153 2015-03-16 12:46:10.810000
|
||||
120 Maryland 4 Midwest 0 1 1 0.724672878302 0.385208420337 0.0473635479185 0.0207864117001 0.00574395685417 0.00194196742935 513.941695151 2015-03-16 12:46:10.810000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.275327121698 0.0902335739163 0.00501226986733 0.00135214595342 0.000256673945672 6.35264797535e-05 15740.4672414 2015-03-16 12:46:10.810000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.178993399273 0.074602197035 0.0121031139844 0.00452199589282 0.00198202982921 503.533274557 2015-03-16 12:46:10.810000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.234595101551 0.101866113599 0.0174568705803 0.00547112911304 0.00206249235873 483.85028115 2015-03-16 12:46:10.810000
|
||||
87 Notre Dame 3 Midwest 0 1 1 0.899272913857 0.565706816044 0.309706973761 0.0739568684425 0.0303201464474 0.0142954373017 68.9523896259 2015-03-16 12:46:10.810000
|
||||
111 Northeastern 14 Midwest 0 1 1 0.100727086143 0.0207046831315 0.00330313789658 0.000171196277198 1.64242531425e-05 2.27380385681e-06 439790.672006 2015-03-16 12:46:10.810000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.724504722356 0.335595221748 0.163112558861 0.0315837112662 0.0110075247897 0.00453250276452 219.628657489 2015-03-16 12:46:10.810000
|
||||
84 Indiana 10 Midwest 0 1 1 0.275495277644 0.0759374909645 0.0286598447434 0.00392453849714 0.00117649273197 0.000429018504883 2329.90178773 2015-03-16 12:46:10.810000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.906659008791 0.569521670262 0.31533025067 0.0742244489691 0.03075283894 0.0146285109948 67.3596574083 2015-03-16 12:46:10.810000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.0933409912086 0.0189456170251 0.00341892343406 0.000192234888607 2.29292172835e-05 3.82888738474e-06 261171.476366 2015-03-16 12:46:10.810000
|
||||
275 Wisconsin 1 West 0 1 1 0.98533937085 0.858415404845 0.632155311144 0.326271244643 0.147358665383 0.0955915720308 9.46117328918 2015-03-16 12:46:10.810000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0146606291499 0.00288793950914 0.000374116594834 2.38023316877e-05 1.28020507302e-06 1.55973466539e-07 6411345.89246 2015-03-16 12:46:10.810000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.045799075556 0.0192270220493 0.00463418484022 0.000552813165767 0.000130679866011 7651.28822563 2015-03-16 12:46:10.810000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0928975800898 0.0370000657065 0.00833857788409 0.00130102865707 0.000382631250646 2612.48229741 2015-03-16 12:46:10.810000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.27281289565 0.0721096879296 0.0194043366171 0.00390159008063 0.00140148255963 712.53010648 2015-03-16 12:46:10.810000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0405471838166 0.00347307535692 0.000341429573009 2.89948223848e-05 5.18969560372e-06 192688.528704 2015-03-16 12:46:10.810000
|
||||
153 North Carolina 4 West 0 1 1 0.868066821461 0.638372298534 0.229908428881 0.0818431510749 0.0246397990343 0.0120123226467 82.2478471826 2015-03-16 12:46:10.810000
|
||||
108 Harvard 13 West 0 1 1 0.131933178539 0.0482676219992 0.00575229233807 0.000760294327855 8.09106869402e-05 1.74899017778e-05 57174.849968 2015-03-16 12:46:10.810000
|
||||
2752 Xavier 6 West 0 1 1 0.575695334911 0.264852955622 0.0455715647922 0.0121241113335 0.0026972325622 0.00105055035345 950.882027087 2015-03-16 12:46:10.810000
|
||||
252 Brigham Young 11a West 1 1 0.4377749582 0.169717094717 0.0620072756294 0.0131774301806 0.00419913300743 0.00065540825481 0.000193975318566 5154.29505193 2015-03-16 12:46:10.810000
|
||||
145 Ole Miss 11b West 1 1 0.5622250418 0.254587570371 0.107786826382 0.0163399004286 0.0039357093993 0.000645366443383 0.000198560782069 5035.2412435 2015-03-16 12:46:10.810000
|
||||
239 Baylor 3 West 0 1 1 0.758454213021 0.473842046856 0.125824918788 0.0475606836423 0.010627919404 0.00413651906948 240.749157493 2015-03-16 12:46:10.810000
|
||||
2247 Georgia State 14 West 0 1 1 0.241545786979 0.0915108955102 0.00808323142998 0.00123291946655 0.00013605396318 3.02676777933e-05 33037.5438496 2015-03-16 12:46:10.810000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.0466869068103 0.0211563762202 0.005424234432 0.00100119837896 0.000337854105635 2958.85747493 2015-03-16 12:46:10.810000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129316481557 0.0735170061178 0.0256912422784 0.00714682234904 0.00329829050992 302.18736236 2015-03-16 12:46:10.810000
|
||||
12 Arizona 2 West 0 1 1 0.993212617177 0.823330995448 0.696244023373 0.458210120484 0.168870092568 0.0949806353824 9.52846189093 2015-03-16 12:46:10.810000
|
||||
2640 Texas Southern 15 West 0 1 1 0.0067873828228 0.000665616185434 8.5548669896e-05 4.82466397561e-06 1.51931493027e-07 1.16193835319e-08 86063084.641 2015-03-16 12:46:10.810000
|
||||
150 Duke 1 South 0 1 1 0.973355393518 0.836327250865 0.551750874731 0.324195483718 0.162694687884 0.0573318184565 16.4423213309 2015-03-16 12:46:10.810000
|
||||
2454 North Florida 16a South 1 1 0.514859792082 0.016979682848 0.00473116653693 0.000763714567088 0.000100054394331 9.62818087427e-06 5.8147113696e-07 1719774.81764 2015-03-16 12:46:10.810000
|
||||
2523 Robert Morris 16b South 1 1 0.485140207918 0.00966492363381 0.00207495902744 0.000268577530749 2.79863167457e-05 2.91683949535e-06 1.92156391696e-07 5204093.38987 2015-03-16 12:46:10.810000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.101383736758 0.0444823662544 0.0166622175618 0.00429757411088 0.000716152404537 1395.35082374 2015-03-16 12:46:10.810000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.055482886813 0.016230662596 0.00393864835911 0.000879247270097 0.000126022149547 7934.11302255 2015-03-16 12:46:10.810000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.274587140026 0.135399203109 0.0496572381374 0.012142166714 81.3576239361 2015-03-16 12:46:10.810000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0252666182374 0.0091800948209 0.00192514196409 0.00025724098008 3886.40549693 2015-03-16 12:46:10.810000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0839690612298 0.0312934291059 0.00980126752756 0.00201816573964 494.499443063 2015-03-16 12:46:10.810000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00268098482736 0.000285238993667 2.13961735743e-05 9.91108532042e-07 1008970.23541 2015-03-16 12:46:10.810000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.632356290489 0.236931309089 0.100275697183 0.0421501003121 0.011955470028 0.002203833518 452.754783124 2015-03-16 12:46:10.810000
|
||||
26 UCLA 11 South 0 1 1 0.367643709511 0.100419512957 0.02910606481 0.00860912107858 0.00183023782191 0.000248254020655 4027.13214207 2015-03-16 12:46:10.810000
|
||||
66 Iowa State 3 South 0 1 1 0.907896808053 0.638937845519 0.315885213385 0.153409871631 0.0646757440947 0.0185730659584 52.8414068112 2015-03-16 12:46:10.810000
|
||||
5 UAB 14 South 0 1 1 0.0921031919474 0.0237113324359 0.00316975132403 0.000462287188321 5.30673663203e-05 3.80593970328e-06 262746.199894 2015-03-16 12:46:10.810000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0612388770597 0.0236758454453 0.00816740579561 0.00187824788041 531.411089307 2015-03-16 12:46:10.810000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0205843666287 0.00649957197146 0.00179818274905 0.000325099435091 3074.98196755 2015-03-16 12:46:10.810000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.469100945184 0.244041580223 0.102716999814 0.0293673891944 33.0513756051 2015-03-16 12:46:10.810000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.000639084426507 6.92657699467e-05 6.36072042248e-06 3.64798614414e-07 2741237.48197 2015-03-16 12:46:10.810000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.838685080463 0.698769418226 0.45355433804 0.282004969489 0.107781767745 8.27800704071 2015-03-16 12:46:10.810000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00264169300421 0.000549776520533 5.26349636384e-05 4.83476211687e-06 1.91244733043e-07 5228901.17204 2015-03-16 12:46:10.810000
|
||||
152 North Carolina State 8 East 0 1 1 0.586285390231 0.103767703376 0.055196223874 0.0178179655637 0.00622222562771 0.00111056445818 899.443006826 2015-03-16 12:46:10.810000
|
||||
99 LSU 9 East 0 1 1 0.413714609769 0.0549055231562 0.0252424405797 0.00666504473305 0.00210773023718 0.000334370027458 2989.69868075 2015-03-16 12:46:10.810000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.42529225224 0.1009746575 0.0340251566606 0.0135031280689 0.00282112171437 353.468931598 2015-03-16 12:46:10.810000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0827307269499 0.00673705329164 0.000910040992343 0.000155844563447 1.21302623805e-05 82437.4476305 2015-03-16 12:46:10.810000
|
||||
97 Louisville 4 East 0 1 1 0.754857085264 0.414170735043 0.10704723073 0.0386994285549 0.0173836849909 0.00426377236412 233.534096711 2015-03-16 12:46:10.810000
|
||||
300 UC Irvine 13 East 0 1 1 0.245142914736 0.0778062857676 0.00548319927773 0.000651348626355 9.97248420542e-05 6.84822902993e-06 146022.153669 2015-03-16 12:46:10.810000
|
||||
2507 Providence 6 East 0 1 1 0.526302213586 0.212030757826 0.0658127168637 0.0210584125457 0.00717145604218 0.00123982473617 805.565614337 2015-03-16 12:46:10.810000
|
||||
68 Boise State 11a East 1 1 0.26621765753 0.0969617992331 0.0284687119808 0.00525422872516 0.00107373102112 0.0002961671877 4.03138088606e-05 24804.3961723 2015-03-16 12:46:10.810000
|
||||
2168 Dayton 11b East 1 1 0.73378234247 0.376735987181 0.157369925767 0.037188082745 0.00936653533594 0.00341922289604 0.000647732846354 1542.84636448 2015-03-16 12:46:10.810000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.581081373124 0.213794044007 0.0793587724824 0.0379056499095 0.0100544627521 98.4583226036 2015-03-16 12:46:10.810000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.021049231303 0.00245665517405 0.000336238454145 4.64372519701e-05 2.85450946742e-06 350321.887843 2015-03-16 12:46:10.810000
|
||||
127 Michigan State 7 East 0 1 1 0.647403101063 0.183437080352 0.10503787456 0.0402038383782 0.0198441461795 0.0055229876607 180.061422084 2015-03-16 12:46:10.810000
|
||||
61 Georgia 10 East 0 1 1 0.352596898937 0.0654934602518 0.0256130214668 0.00618292025638 0.00208651502794 0.000358665063128 2787.11655442 2015-03-16 12:46:10.810000
|
||||
258 Virginia 2 East 0 1 1 0.965239535933 0.744548755339 0.543645599889 0.289915694603 0.187233750806 0.0758878834457 12.177334175 2015-03-16 12:46:10.810000
|
||||
2057 Belmont 15 East 0 1 1 0.034760464067 0.00652070405717 0.00119777656981 0.000127898788062 2.19456400318e-05 1.7274205967e-06 578896.809781 2015-03-16 12:46:10.810000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-01.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-01.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.998980696218 0.940661149973 0.856053511599 0.726219797306 0.531234210934 0.408231012398 1.44959341556 2015-03-17 21:05:43.280000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-17 21:05:43.280000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.00101930378208 0.000103568482449 1.2370466854e-05 1.07489002695e-06 5.18846191376e-08 4.07802097581e-09 245216981.927 2015-03-17 21:05:43.280000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341904140017 0.0173029348906 0.0069844568534 0.00201678833166 0.000711112209919 1405.24782707 2015-03-17 21:05:43.280000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250448675425 0.0121098437045 0.0046410482996 0.00134859461531 0.000478694866258 2088.01342063 2015-03-17 21:05:43.280000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.673966410629 0.387736411054 0.0523344691525 0.0243857100526 0.00722293698778 0.00259068271184 384.998638671 2015-03-17 21:05:43.280000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.326033589371 0.136821594692 0.0104845726072 0.00351966799444 0.000665275069854 0.000163565014687 6112.7768484 2015-03-17 21:05:43.280000
|
||||
120 Maryland 4 Midwest 0 1 1 0.724672878302 0.385208420337 0.0467916056406 0.0205562156065 0.00568794162809 0.00192536132976 518.383029326 2015-03-17 21:05:43.280000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.275327121698 0.0902335739163 0.00491069193862 0.00132736742124 0.000252539909327 6.26317543414e-05 15965.3418423 2015-03-17 21:05:43.280000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.178993399273 0.074602197035 0.012016150339 0.0044918306141 0.00196972523642 506.685022007 2015-03-17 21:05:43.280000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.234595101551 0.101866113599 0.0173359619164 0.00543631899344 0.00205042083824 486.704758628 2015-03-17 21:05:43.280000
|
||||
87 Notre Dame 3 Midwest 0 1 1 0.899272913857 0.565706816044 0.309706973761 0.073558071768 0.0301691756554 0.0142295819 69.2761336932 2015-03-17 21:05:43.280000
|
||||
111 Northeastern 14 Midwest 0 1 1 0.100727086143 0.0207046831315 0.00330313789658 0.000169025161447 1.62330067157e-05 2.2494940556e-06 444543.406557 2015-03-17 21:05:43.280000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.724504722356 0.335595221748 0.163112558861 0.03138303296 0.0109431631565 0.00450807599647 220.824122038 2015-03-17 21:05:43.280000
|
||||
84 Indiana 10 Midwest 0 1 1 0.275495277644 0.0759374909645 0.0286598447434 0.00389316319505 0.00116780965262 0.000426089912678 2345.92249276 2015-03-17 21:05:43.280000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.906659008791 0.569521670262 0.31533025067 0.0738193848171 0.0305976886212 0.0145601458619 67.6806306397 2015-03-17 21:05:43.280000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.0933409912086 0.0189456170251 0.00341892343406 0.000189871419013 2.26696729212e-05 3.78896434828e-06 263923.362459 2015-03-17 21:05:43.280000
|
||||
275 Wisconsin 1 West 0 1 1 0.98533937085 0.858415404845 0.632155311144 0.326271244643 0.147056645872 0.0954054349978 9.48158315114 2015-03-17 21:05:43.280000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0146606291499 0.00288793950914 0.000374116594834 2.38023316877e-05 1.27149083815e-06 1.54973409843e-07 6452718.86346 2015-03-17 21:05:43.280000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.045799075556 0.0192270220493 0.00463418484022 0.000549944587105 0.000130043304323 7688.74615962 2015-03-17 21:05:43.280000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0928975800898 0.0370000657065 0.00833857788409 0.00129504810637 0.000380980924217 2623.8033338 2015-03-17 21:05:43.280000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.27281289565 0.0721096879296 0.0194043366171 0.00388592026183 0.00139620018511 715.229671549 2015-03-17 21:05:43.280000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0405471838166 0.00347307535692 0.000341429573009 2.88236149445e-05 5.1608915279e-06 193763.971535 2015-03-17 21:05:43.280000
|
||||
153 North Carolina 4 West 0 1 1 0.868066821461 0.638372298534 0.229908428881 0.0818431510749 0.0245645435808 0.0119777841449 82.4878962506 2015-03-17 21:05:43.280000
|
||||
108 Harvard 13 West 0 1 1 0.131933178539 0.0482676219992 0.00575229233807 0.000760294327855 8.04710372041e-05 1.74006460538e-05 57468.130566 2015-03-17 21:05:43.280000
|
||||
2752 Xavier 6 West 0 1 1 0.575695334911 0.264852955622 0.0455715647922 0.0121241113335 0.00268703868371 0.00104682333037 954.271029016 2015-03-17 21:05:43.280000
|
||||
252 Brigham Young 11a West 1 1 0.4377749582 0.169717094717 0.0620072756294 0.0131774301806 0.00419913300743 0.000652396017484 0.000193138764854 5176.62449583 2015-03-17 21:05:43.280000
|
||||
145 Ole Miss 11b West 1 1 0.5622250418 0.254587570371 0.107786826382 0.0163399004286 0.0039357093993 0.00064247224897 0.00019772525451 5056.52288689 2015-03-17 21:05:43.280000
|
||||
239 Baylor 3 West 0 1 1 0.758454213021 0.473842046856 0.125824918788 0.0475606836423 0.0105878638388 0.00412188154463 241.607651184 2015-03-17 21:05:43.280000
|
||||
2247 Georgia State 14 West 0 1 1 0.241545786979 0.0915108955102 0.00808323142998 0.00123291946655 0.000135325191919 3.01154338419e-05 33204.5651348 2015-03-17 21:05:43.280000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.0466869068103 0.0211563762202 0.005424234432 0.000996979010386 0.000336518134002 2970.60806197 2015-03-17 21:05:43.280000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129316481557 0.0735170061178 0.0256912422784 0.00712362416088 0.00328822631876 303.115320255 2015-03-17 21:05:43.280000
|
||||
12 Arizona 2 West 0 1 1 0.993212617177 0.823330995448 0.696244023373 0.458210120484 0.168438252814 0.0947509380146 9.55398522647 2015-03-17 21:05:43.280000
|
||||
2640 Texas Southern 15 West 0 1 1 0.0067873828228 0.000665616185434 8.5548669896e-05 4.82466397561e-06 1.50749213325e-07 1.15340245155e-08 86700005.4595 2015-03-17 21:05:43.280000
|
||||
150 Duke 1 South 0 1 1 0.973355393518 0.836327250865 0.551750874731 0.324195483718 0.162694687884 0.0572525606148 16.4664676874 2015-03-17 21:05:43.280000
|
||||
2454 North Florida 16a South 1 1 0.514859792082 0.016979682848 0.00473116653693 0.000763714567088 0.000100054394331 9.62818087427e-06 5.79714727241e-07 1724985.36486 2015-03-17 21:05:43.280000
|
||||
2523 Robert Morris 16b South 1 1 0.485140207918 0.00966492363381 0.00207495902744 0.000268577530749 2.79863167457e-05 2.91683949535e-06 1.91589674663e-07 5219486.95914 2015-03-17 21:05:43.280000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.101383736758 0.0444823662544 0.0166622175618 0.00429757411088 0.000714624078217 1398.33712071 2015-03-17 21:05:43.280000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.055482886813 0.016230662596 0.00393864835911 0.000879247270097 0.000125735590094 7952.1976527 2015-03-17 21:05:43.280000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.274587140026 0.135399203109 0.0496572381374 0.0121207676563 81.5030252505 2015-03-17 21:05:43.280000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0252666182374 0.0091800948209 0.00192514196409 0.000256639586986 3895.51499889 2015-03-17 21:05:43.280000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0839690612298 0.0312934291059 0.00980126752756 0.00201426664215 495.458601396 2015-03-17 21:05:43.280000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00268098482736 0.000285238993667 2.13961735743e-05 9.8790337082e-07 1012243.74937 2015-03-17 21:05:43.280000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.632356290489 0.236931309089 0.100275697183 0.0421501003121 0.011955470028 0.00219934083946 453.681685558 2015-03-17 21:05:43.280000
|
||||
26 UCLA 11 South 0 1 1 0.367643709511 0.100419512957 0.02910606481 0.00860912107858 0.00183023782191 0.000247677019235 4036.51629072 2015-03-17 21:05:43.280000
|
||||
66 Iowa State 3 South 0 1 1 0.907896808053 0.638937845519 0.315885213385 0.153409871631 0.0646757440947 0.0185433732119 52.9276208581 2015-03-17 21:05:43.280000
|
||||
5 UAB 14 South 0 1 1 0.0921031919474 0.0237113324359 0.00316975132403 0.000462287188321 5.30673663203e-05 3.79498329365e-06 263504.771336 2015-03-17 21:05:43.280000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0612388770597 0.0236758454453 0.00816740579561 0.00187482283877 532.383730621 2015-03-17 21:05:43.280000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0205843666287 0.00649957197146 0.00179818274905 0.000324430684583 3081.32250376 2015-03-17 21:05:43.280000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.469100945184 0.244041580223 0.102716999814 0.0293203054275 33.1060567215 2015-03-17 21:05:43.280000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.000639084426507 6.92657699467e-05 6.36072042248e-06 3.63681347505e-07 2749658.85157 2015-03-17 21:05:43.280000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.838685080463 0.698769418226 0.45355433804 0.282004969489 0.107642313695 8.29002699468 2015-03-17 21:05:43.280000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00264169300421 0.000549776520533 5.26349636384e-05 4.83476211687e-06 1.90602566123e-07 5246518.08072 2015-03-17 21:05:43.280000
|
||||
152 North Carolina State 8 East 0 1 1 0.586285390231 0.103767703376 0.055196223874 0.0178179655637 0.00622222562771 0.00110826638807 901.310140198 2015-03-17 21:05:43.280000
|
||||
99 LSU 9 East 0 1 1 0.413714609769 0.0549055231562 0.0252424405797 0.00666504473305 0.00210773023718 0.000333641071217 2996.23291366 2015-03-17 21:05:43.280000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.42529225224 0.1009746575 0.0340251566606 0.0135031280689 0.00281571121793 354.150057162 2015-03-17 21:05:43.280000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0827307269499 0.00673705329164 0.000910040992343 0.000155844563447 1.20961745654e-05 82669.7645953 2015-03-17 21:05:43.280000
|
||||
97 Louisville 4 East 0 1 1 0.754857085264 0.414170735043 0.10704723073 0.0386994285549 0.0173836849909 0.00425627117294 233.947436234 2015-03-17 21:05:43.280000
|
||||
300 UC Irvine 13 East 0 1 1 0.245142914736 0.0778062857676 0.00548319927773 0.000651348626355 9.97248420542e-05 6.82826719646e-06 146449.039407 2015-03-17 21:05:43.280000
|
||||
2507 Providence 6 East 0 1 1 0.526302213586 0.212030757826 0.0658127168637 0.0210584125457 0.00717145604218 0.00123722177441 807.262528739 2015-03-17 21:05:43.280000
|
||||
68 Boise State 11a East 1 1 0.26621765753 0.0969617992331 0.0284687119808 0.00525422872516 0.00107373102112 0.0002961671877 4.02202390202e-05 24862.1043564 2015-03-17 21:05:43.280000
|
||||
2168 Dayton 11b East 1 1 0.73378234247 0.376735987181 0.157369925767 0.037188082745 0.00936653533594 0.00341922289604 0.00064642930493 1545.95957063 2015-03-17 21:05:43.280000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.581081373124 0.213794044007 0.0793587724824 0.0379056499095 0.0100375695119 98.6257110664 2015-03-17 21:05:43.280000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.021049231303 0.00245665517405 0.000336238454145 4.64372519701e-05 2.84592832431e-06 351378.193726 2015-03-17 21:05:43.280000
|
||||
127 Michigan State 7 East 0 1 1 0.647403101063 0.183437080352 0.10503787456 0.0402038383782 0.0198441461795 0.00551397976336 180.357212561 2015-03-17 21:05:43.280000
|
||||
61 Georgia 10 East 0 1 1 0.352596898937 0.0654934602518 0.0256130214668 0.00618292025638 0.00208651502794 0.000357910123211 2792.99752941 2015-03-17 21:05:43.280000
|
||||
258 Virginia 2 East 0 1 1 0.965239535933 0.744548755339 0.543645599889 0.289915694603 0.187233750806 0.0757946391559 12.1935452314 2015-03-17 21:05:43.280000
|
||||
2057 Belmont 15 East 0 1 1 0.034760464067 0.00652070405717 0.00119777656981 0.000127898788062 2.19456400318e-05 1.72258263275e-06 580522.674734 2015-03-17 21:05:43.280000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-02.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-02.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.998980696218 0.940661149973 0.856053511599 0.726219797306 0.531003153175 0.408065129661 1.45058920087 2015-03-17 23:55:05.070000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-17 23:55:05.070000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.00101930378208 0.000103568482449 1.2370466854e-05 1.07489002695e-06 5.16350058863e-08 4.06128816494e-09 246227294.229 2015-03-17 23:55:05.070000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341904140017 0.0173029348906 0.0069844568534 0.00201306033646 0.000709979406737 1407.49155695 2015-03-17 23:55:05.070000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250448675425 0.0121098437045 0.0046410482996 0.00134611521769 0.000477936631931 2091.32758736 2015-03-17 23:55:05.070000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.673966410629 0.387736411054 0.0523344691525 0.0243857100526 0.00720987619576 0.002586635726 385.602562529 2015-03-17 23:55:05.070000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.326033589371 0.136821594692 0.0104845726072 0.00351966799444 0.00066359279205 0.000163211473963 6126.02021321 2015-03-17 23:55:05.070000
|
||||
120 Maryland 4 Midwest 0 1 1 0.724672878302 0.385208420337 0.0467916056406 0.0205562156065 0.00567704312126 0.00192218065639 519.242463515 2015-03-17 23:55:05.070000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.275327121698 0.0902335739163 0.00491069193862 0.00132736742124 0.000251903996852 6.24969639637e-05 15999.777263 2015-03-17 23:55:05.070000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.178993399273 0.074602197035 0.012016150339 0.00448534571558 0.001967253237 507.322965845 2015-03-17 23:55:05.070000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.234595101551 0.101866113599 0.0173359619164 0.00542697790256 0.0020473741432 487.430511501 2015-03-17 23:55:05.070000
|
||||
87 Notre Dame 3 Midwest 0 1 1 0.899272913857 0.565706816044 0.309706973761 0.073558071768 0.0301299447478 0.0142133603988 69.3563388208 2015-03-17 23:55:05.070000
|
||||
111 Northeastern 14 Midwest 0 1 1 0.100727086143 0.0207046831315 0.00330313789658 0.000169025161447 1.61737960283e-05 2.24250707364e-06 445928.474093 2015-03-17 23:55:05.070000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.724504722356 0.335595221748 0.163112558861 0.03138303296 0.0109261797789 0.00450199742059 221.123627932 2015-03-17 23:55:05.070000
|
||||
84 Indiana 10 Midwest 0 1 1 0.275495277644 0.0759374909645 0.0286598447434 0.00389316319505 0.00116572129413 0.000425433025239 2349.54624506 2015-03-17 23:55:05.070000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.906659008791 0.569521670262 0.31533025067 0.0738193848171 0.0305583975941 0.0145437444572 67.7580837895 2015-03-17 23:55:05.070000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.0933409912086 0.0189456170251 0.00341892343406 0.000189871419013 2.25952190849e-05 3.77836095931e-06 264664.025594 2015-03-17 23:55:05.070000
|
||||
275 Wisconsin 1 West 0 1 1 0.98533937085 0.858415404845 0.632155311144 0.326062567578 0.146973576296 0.0953566066852 9.48695035155 2015-03-17 23:55:05.070000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0146606291499 0.00288793950914 0.000374116594834 2.39417978651e-05 1.27786486441e-06 1.55629577914e-07 6425512.79629 2015-03-17 23:55:05.070000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.045799075556 0.0192270220493 0.00463682181724 0.000550173888887 0.000130080133522 7686.56898475 2015-03-17 23:55:05.070000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0928975800898 0.0370000657065 0.00834484564964 0.00129580842197 0.000381150818804 2622.63335106 2015-03-17 23:55:05.070000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.27281289565 0.0721096879296 0.0194100355828 0.00388674191714 0.0013963996918 715.127342243 2015-03-17 23:55:05.070000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0405471838166 0.00347307535692 0.000342725977323 2.89160032669e-05 5.17468696025e-06 193247.404721 2015-03-17 23:55:05.070000
|
||||
153 North Carolina 4 West 0 1 1 0.868066821461 0.638372298534 0.229908428881 0.0818217848256 0.024558490245 0.0119749698031 82.5075174669 2015-03-17 23:55:05.070000
|
||||
108 Harvard 13 West 0 1 1 0.131933178539 0.0482676219992 0.00575229233807 0.000762239824732 8.0642105787e-05 1.74309650756e-05 57368.1700754 2015-03-17 23:55:05.070000
|
||||
2752 Xavier 6 West 0 1 1 0.561466312318 0.259201878323 0.0448519225174 0.0119917902875 0.00267117997782 0.00104496920288 955.966001723 2015-03-17 23:55:05.070000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-17 23:55:05.070000
|
||||
145 Ole Miss 11b West 1 1 1 0.438533687682 0.179704512074 0.0258718286622 0.00595435306352 0.00092491332803 0.000272833137436 3664.24392674 2015-03-17 23:55:05.070000
|
||||
239 Baylor 3 West 0 1 1 0.758454213021 0.470699187674 0.125192800898 0.0473867674645 0.010567211166 0.00411963458888 241.7399757 2015-03-17 23:55:05.070000
|
||||
2247 Georgia State 14 West 0 1 1 0.241545786979 0.090394421929 0.00800982767564 0.00122521690622 0.000134878044853 3.00944664212e-05 33227.7001206 2015-03-17 23:55:05.070000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.0466869068103 0.0215619169896 0.00552130749759 0.00101345391944 0.000341691818175 2925.61382804 2015-03-17 23:55:05.070000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129316481557 0.0745887581922 0.0260415424225 0.00721354462952 0.0033270995448 299.562092157 2015-03-17 23:55:05.070000
|
||||
12 Arizona 2 West 0 1 1 0.993212617177 0.823330995448 0.699834029202 0.460469055523 0.169202903681 0.0951532490254 9.50936263598 2015-03-17 23:55:05.070000
|
||||
2640 Texas Southern 15 West 0 1 1 0.0067873828228 0.000665616185434 8.89158628965e-05 5.00378186289e-06 1.55991786138e-07 1.19097401458e-08 83964887.2137 2015-03-17 23:55:05.070000
|
||||
150 Duke 1 South 0 1 1 0.973355393518 0.836327250865 0.551750874731 0.324195483718 0.162694687884 0.0572441579925 16.4690315147 2015-03-17 23:55:05.070000
|
||||
2454 North Florida 16a South 1 1 0.514859792082 0.016979682848 0.00473116653693 0.000763714567088 0.000100054394331 9.62818087427e-06 5.79247987634e-07 1726375.30402 2015-03-17 23:55:05.070000
|
||||
2523 Robert Morris 16b South 1 1 0.485140207918 0.00966492363381 0.00207495902744 0.000268577530749 2.79863167457e-05 2.91683949535e-06 1.91443064583e-07 5223484.1243 2015-03-17 23:55:05.070000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.101383736758 0.0444823662544 0.0166622175618 0.00429757411088 0.000714350938483 1398.87217225 2015-03-17 23:55:05.070000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.055482886813 0.016230662596 0.00393864835911 0.000879247270097 0.00012568046626 7955.68594938 2015-03-17 23:55:05.070000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.274587140026 0.135399203109 0.0496572381374 0.0121177155557 81.5238053664 2015-03-17 23:55:05.070000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0252666182374 0.0091800948209 0.00192514196409 0.000256520137471 3897.32942497 2015-03-17 23:55:05.070000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0839690612298 0.0312934291059 0.00980126752756 0.00201364644413 495.61150939 2015-03-17 23:55:05.070000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00268098482736 0.000285238993667 2.13961735743e-05 9.86984281315e-07 1013186.36168 2015-03-17 23:55:05.070000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.632356290489 0.236931309089 0.100275697183 0.0421501003121 0.011955470028 0.0021985796991 453.839094716 2015-03-17 23:55:05.070000
|
||||
26 UCLA 11 South 0 1 1 0.367643709511 0.100419512957 0.02910606481 0.00860912107858 0.00183023782191 0.000247563183413 4038.37284298 2015-03-17 23:55:05.070000
|
||||
66 Iowa State 3 South 0 1 1 0.907896808053 0.638937845519 0.315885213385 0.153409871631 0.0646757440947 0.0185396074321 52.9385746791 2015-03-17 23:55:05.070000
|
||||
5 UAB 14 South 0 1 1 0.0921031919474 0.0237113324359 0.00316975132403 0.000462287188321 5.30673663203e-05 3.79222494463e-06 263696.437415 2015-03-17 23:55:05.070000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0612388770597 0.0236758454453 0.00816740579561 0.00187431406285 532.528515749 2015-03-17 23:55:05.070000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0205843666287 0.00649957197146 0.00179818274905 0.000324316183089 3082.41073355 2015-03-17 23:55:05.070000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.469100945184 0.244041580223 0.102716999814 0.0293143133008 33.1130283265 2015-03-17 23:55:05.070000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.000639084426507 6.92657699467e-05 6.36072042248e-06 3.63379818776e-07 2751940.49023 2015-03-17 23:55:05.070000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.838685080463 0.698769418226 0.45355433804 0.282004969489 0.107628715578 8.29120072303 2015-03-17 23:55:05.070000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00264169300421 0.000549776520533 5.26349636384e-05 4.83476211687e-06 1.90410587427e-07 5251807.80703 2015-03-17 23:55:05.070000
|
||||
152 North Carolina State 8 East 0 1 1 0.586285390231 0.103767703376 0.055196223874 0.0178179655637 0.00622222562771 0.00110787018668 901.632828304 2015-03-17 23:55:05.070000
|
||||
99 LSU 9 East 0 1 1 0.413714609769 0.0549055231562 0.0252424405797 0.00666504473305 0.00210773023718 0.000333507522779 2997.43311379 2015-03-17 23:55:05.070000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.42529225224 0.1009746575 0.0340251566606 0.0135031280689 0.00281485804243 354.257702139 2015-03-17 23:55:05.070000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0827307269499 0.00673705329164 0.000910040992343 0.000155844563447 1.20878230903e-05 82726.8818137 2015-03-17 23:55:05.070000
|
||||
97 Louisville 4 East 0 1 1 0.754857085264 0.414170735043 0.10704723073 0.0386994285549 0.0173836849909 0.00425520353639 234.006384876 2015-03-17 23:55:05.070000
|
||||
300 UC Irvine 13 East 0 1 1 0.245142914736 0.0778062857676 0.00548319927773 0.000651348626355 9.97248420542e-05 6.82317063448e-06 146558.430149 2015-03-17 23:55:05.070000
|
||||
2507 Providence 6 East 0 1 1 0.526302213586 0.212030757826 0.0658127168637 0.0210584125457 0.00717145604218 0.00123676535868 807.560809843 2015-03-17 23:55:05.070000
|
||||
68 Boise State 11a East 1 1 0.26621765753 0.0969617992331 0.0284687119808 0.00525422872516 0.00107373102112 0.0002961671877 4.02018080559e-05 24873.5031221 2015-03-17 23:55:05.070000
|
||||
2168 Dayton 11b East 1 1 0.73378234247 0.376735987181 0.157369925767 0.037188082745 0.00936653533594 0.00341922289604 0.000646211771342 1546.48032201 2015-03-17 23:55:05.070000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.581081373124 0.213794044007 0.0793587724824 0.0379056499095 0.0100352942502 98.6482988008 2015-03-17 23:55:05.070000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.021049231303 0.00245665517405 0.000336238454145 4.64372519701e-05 2.84366024264e-06 351658.451086 2015-03-17 23:55:05.070000
|
||||
127 Michigan State 7 East 0 1 1 0.647403101063 0.183437080352 0.10503787456 0.0402038383782 0.0198441461795 0.0055128092968 180.395717893 2015-03-17 23:55:05.070000
|
||||
61 Georgia 10 East 0 1 1 0.352596898937 0.0654934602518 0.0256130214668 0.00618292025638 0.00208651502794 0.000357777351252 2794.03438801 2015-03-17 23:55:05.070000
|
||||
258 Virginia 2 East 0 1 1 0.965239535933 0.744548755339 0.543645599889 0.289915694603 0.187233750806 0.0757861299154 12.1950265981 2015-03-17 23:55:05.070000
|
||||
2057 Belmont 15 East 0 1 1 0.034760464067 0.00652070405717 0.00119777656981 0.000127898788062 2.19456400318e-05 1.72140184318e-06 580920.88292 2015-03-17 23:55:05.070000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-03.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-03.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.998983496996 0.940663787245 0.855848872555 0.732191058659 0.535161071576 0.413307574934 1.41950561917 2015-03-18 11:22:21.060000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-18 11:22:21.060000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.00101650300373 0.000103145343717 1.22787725481e-05 1.12409704818e-06 5.38721931785e-08 4.31435296835e-09 231784465.254 2015-03-18 11:22:21.060000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341892180357 0.0172798992049 0.00717774418566 0.00206507216181 0.000736466009539 1356.83591781 2015-03-18 11:22:21.060000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250438493756 0.0120928234771 0.00477417403792 0.00138225574649 0.000496233771816 2014.17924977 2015-03-18 11:22:21.060000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.392345454989 0.052872307851 0.0252484445768 0.00744173074212 0.0026961201911 369.903345965 2015-03-18 11:22:21.060000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130567379496 0.0100484218505 0.00349298272745 0.000659406922633 0.000164822147336 6066.14580634 2015-03-18 11:22:21.060000
|
||||
120 Maryland 4 Midwest 0 1 1 0.724672878302 0.386365553872 0.0469119517188 0.0211621740139 0.00583102211444 0.00199603618479 499.992921681 2015-03-18 11:22:21.060000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.275327121698 0.0907216116436 0.00493344457019 0.00138166901064 0.000261440551032 6.5665086219e-05 15227.7929184 2015-03-18 11:22:21.060000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.178993399273 0.0785307367071 0.0126011025675 0.00468985046855 0.00207445237651 481.05493234 2015-03-18 11:22:21.060000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.234595101551 0.10706462651 0.0181533441413 0.00566430370111 0.00215690432869 462.627425055 2015-03-18 11:22:21.060000
|
||||
87 Notre Dame 3 Midwest 0 1 1 0.899272913857 0.565706816044 0.322418108164 0.076339384605 0.0311875043753 0.0148328879426 66.4177546457 2015-03-18 11:22:21.060000
|
||||
111 Northeastern 14 Midwest 0 1 1 0.100727086143 0.0207046831315 0.00357841354488 0.000182248276887 1.7358500994e-05 2.43987318474e-06 409856.367282 2015-03-18 11:22:21.060000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.358771024152 0.173854804735 0.0332997120838 0.0115487130221 0.00479733025461 207.449272184 2015-03-18 11:22:21.060000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0898289004449 0.0342141949627 0.00470292973934 0.00140486185696 0.000517841276448 1930.09364873 2015-03-18 11:22:21.060000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.890706500186 0.529509010378 0.276414783632 0.0590756952193 0.0226124809995 0.0101854333186 97.1794263156 2015-03-18 11:22:21.060000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.109293499814 0.0218910650248 0.00392433174421 0.000216212058433 2.55353925847e-05 4.31346514412e-06 231831.173575 2015-03-18 11:22:21.060000
|
||||
275 Wisconsin 1 West 0 1 1 0.98533937085 0.858415404845 0.632155311144 0.326072863554 0.147209788479 0.0962062419474 9.3943359574 2015-03-18 11:22:21.060000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0146606291499 0.00288793950914 0.000374116594834 2.39365048184e-05 1.30062825947e-06 1.61057286858e-07 6208969.85445 2015-03-18 11:22:21.060000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.045799075556 0.0192270220493 0.00463681673861 0.000556255613518 0.000133362225652 7497.37515918 2015-03-18 11:22:21.060000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0928975800898 0.0370000657065 0.00834478394926 0.00130720795527 0.000389482543155 2566.50916716 2015-03-18 11:22:21.060000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.27281289565 0.0721096879296 0.0194101918657 0.0039131419474 0.00142253572439 701.970043463 2015-03-18 11:22:21.060000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0405471838166 0.00347307535692 0.00034268200743 2.93173665889e-05 5.32653471396e-06 187738.319032 2015-03-18 11:22:21.060000
|
||||
153 North Carolina 4 West 0 1 1 0.868066821461 0.638372298534 0.229908428881 0.081823797401 0.024654688929 0.0121398751269 81.3731701971 2015-03-18 11:22:21.060000
|
||||
108 Harvard 13 West 0 1 1 0.131933178539 0.0482676219992 0.00575229233807 0.000762181666963 8.16068181105e-05 1.78940504465e-05 55883.4965252 2015-03-18 11:22:21.060000
|
||||
2752 Xavier 6 West 0 1 1 0.55851254097 0.257838264755 0.0446084737467 0.011926886295 0.00267270522995 0.00105743052786 944.688604264 2015-03-18 11:22:21.060000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-18 11:22:21.060000
|
||||
145 Ole Miss 11b West 1 1 1 0.44148745903 0.182154270179 0.0265031930254 0.00615801849415 0.000974974217424 0.000293909689929 3401.40568537 2015-03-18 11:22:21.060000
|
||||
239 Baylor 3 West 0 1 1 0.758454213021 0.469884930802 0.124959144499 0.0472980810043 0.010610563851 0.00418354898173 238.031502766 2015-03-18 11:22:21.060000
|
||||
2247 Georgia State 14 West 0 1 1 0.241545786979 0.0901225342638 0.0079835416373 0.00122120870363 0.000136014515516 3.07826653502e-05 32484.8159169 2015-03-18 11:22:21.060000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.046666780487 0.0215374059361 0.00551527162291 0.001019970884 0.000348104690573 2871.69901004 2015-03-18 11:22:21.060000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129281076435 0.0745305304109 0.0260216251124 0.00724018718662 0.00337357914624 295.421087709 2015-03-18 11:22:21.060000
|
||||
12 Arizona 2 West 0 1 1 0.993295046111 0.823399325526 0.699790606329 0.460436748713 0.169639457793 0.0962257301701 9.39223083299 2015-03-18 11:22:21.060000
|
||||
2640 Texas Southern 15 West 0 1 1 0.00670495388921 0.000652817552044 8.71044151874e-05 4.90636697265e-06 1.56581235306e-07 1.21850868117e-08 82067530.8488 2015-03-18 11:22:21.060000
|
||||
150 Duke 1 South 0 1 1 0.973355393518 0.836327250865 0.551750874731 0.324195483718 0.165131988054 0.0580202170451 16.2353715813 2015-03-18 11:22:21.060000
|
||||
2454 North Florida 16a South 1 1 0.514859792082 0.016979682848 0.00473116653693 0.000763714567088 0.000100054394331 9.92362755298e-06 5.9761171875e-07 1673326.29367 2015-03-18 11:22:21.060000
|
||||
2523 Robert Morris 16b South 1 1 0.485140207918 0.00966492363381 0.00207495902744 0.000268577530749 2.79863167457e-05 3.00476879161e-06 1.97370795025e-07 5066604.7249 2015-03-18 11:22:21.060000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.101383736758 0.0444823662544 0.0166622175618 0.00439533616026 0.000729936255711 1368.98264188 2015-03-18 11:22:21.060000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.055482886813 0.016230662596 0.00393864835911 0.000900450467164 0.00012862214642 7773.71087085 2015-03-18 11:22:21.060000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.274587140026 0.135399203109 0.0506006159073 0.0123320193565 80.0897202713 2015-03-18 11:22:21.060000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0252666182374 0.0091800948209 0.00197265589019 0.000262697585343 3805.65851456 2015-03-18 11:22:21.060000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0839690612298 0.0312934291059 0.0100047514871 0.00205308120605 486.072794323 2015-03-18 11:22:21.060000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00268098482736 0.000285238993667 2.20868866212e-05 1.0204843012e-06 979925.882583 2015-03-18 11:22:21.060000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.632356290489 0.236931309089 0.100275697183 0.0421501003121 0.0122160826242 0.00224418299189 444.596461435 2015-03-18 11:22:21.060000
|
||||
26 UCLA 11 South 0 1 1 0.367643709511 0.100419512957 0.02910606481 0.00860912107858 0.00187518555323 0.000253488635506 3943.95002904 2015-03-18 11:22:21.060000
|
||||
66 Iowa State 3 South 0 1 1 0.907896808053 0.638937845519 0.315885213385 0.153409871631 0.0657951678198 0.018834564135 52.0938753257 2015-03-18 11:22:21.060000
|
||||
5 UAB 14 South 0 1 1 0.0921031919474 0.0237113324359 0.00316975132403 0.000462287188321 5.46313364192e-05 3.90634104496e-06 255993.033417 2015-03-18 11:22:21.060000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0612388770597 0.0236758454453 0.00832829754498 0.00190883649545 522.879338216 2015-03-18 11:22:21.060000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0205843666287 0.00649957197146 0.00183783554381 0.000331132125543 3018.94256329 2015-03-18 11:22:21.060000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.469100945184 0.244041580223 0.104496969257 0.0297815846582 32.577796866 2015-03-18 11:22:21.060000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.000639084426507 6.92657699467e-05 6.55787494447e-06 3.75056425786e-07 2666264.477 2015-03-18 11:22:21.060000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.699191049384 0.463179527345 0.287718071411 0.109590471292 8.12488091535 2015-03-18 11:22:21.060000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000551999837886 5.54544047125e-05 5.08463899948e-06 2.00542994257e-07 4986460.89913 2015-03-18 11:22:21.060000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.0554346545427 0.0185328858828 0.00645996538139 0.00114777538843 870.250603628 2015-03-18 11:22:21.060000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0247931581978 0.00680864099661 0.00215193799663 0.00034042912408 2936.46900387 2015-03-18 11:22:21.060000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.42529225224 0.100878942209 0.035198128241 0.0139511425045 0.002903587022 343.401594449 2015-03-18 11:22:21.060000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0827307269499 0.00672482046422 0.000951076376492 0.000162675544032 1.26232158162e-05 79218.1161558 2015-03-18 11:22:21.060000
|
||||
97 Louisville 4 East 0 1 1 0.754857085264 0.414170735043 0.106952784078 0.0399889918372 0.0179419977133 0.0043842264845 227.090406263 2015-03-18 11:22:21.060000
|
||||
300 UC Irvine 13 East 0 1 1 0.245142914736 0.0778062857676 0.00547259128713 0.000681389602836 0.000104202034579 7.13502649202e-06 140152.649201 2015-03-18 11:22:21.060000
|
||||
2507 Providence 6 East 0 1 1 0.526302213586 0.212030757826 0.0687468000235 0.0219479121046 0.00746113038221 0.0012842031377 777.693004744 2015-03-18 11:22:21.060000
|
||||
68 Boise State 11a East 1 1 0.26621765753 0.0969617992331 0.0284687119808 0.00553552990806 0.00112859680093 0.00031083703643 4.21461278698e-05 23725.9720979 2015-03-18 11:22:21.060000
|
||||
2168 Dayton 11b East 1 1 0.73378234247 0.376735987181 0.157369925767 0.039035861034 0.00980889467768 0.00357535842365 0.000674537026584 1481.49830712 2015-03-18 11:22:21.060000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.581081373124 0.222529358081 0.0824267691581 0.0393139736006 0.0103846107496 95.2963392771 2015-03-18 11:22:21.060000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.021049231303 0.0026017761708 0.000355316663713 4.90039511426e-05 3.00319678527e-06 332977.513065 2015-03-18 11:22:21.060000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.103988099901 0.0398586352755 0.0197059842386 0.00548583704229 181.287587526 2015-03-18 11:22:21.060000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0320382302726 0.0081256422447 0.00279438307181 0.000490153801081 2039.1759566 2015-03-18 11:22:21.060000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.524311814264 0.270822671638 0.170620476008 0.066498349261 14.0379672746 2015-03-18 11:22:21.060000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00121253034493 0.000129466749222 2.22352594616e-05 1.74931774101e-06 571650.43676 2015-03-18 11:22:21.060000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-04.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-04.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.998983496996 0.940663787245 0.855848872555 0.732191058659 0.535161071576 0.413244205236 1.41987664275 2015-03-18 20:50:55.070000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-18 20:50:55.070000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.00101650300373 0.000103145343717 1.22787725481e-05 1.12409704818e-06 5.38721931785e-08 4.30974751251e-09 232032153.342 2015-03-18 20:50:55.070000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341892180357 0.0172798992049 0.00717774418566 0.00206507216181 0.00073609689628 1357.51679997 2015-03-18 20:50:55.070000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250438493756 0.0120928234771 0.00477417403792 0.00138225574649 0.000495986412682 2015.18426318 2015-03-18 20:50:55.070000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.392345454989 0.052872307851 0.0252484445768 0.00744173074212 0.00269478637003 370.086929606 2015-03-18 20:50:55.070000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130567379496 0.0100484218505 0.00349298272745 0.000659406922633 0.000164716108438 6070.05163839 2015-03-18 20:50:55.070000
|
||||
120 Maryland 4 Midwest 0 1 1 0.724672878302 0.386365553872 0.0469119517188 0.0211621740139 0.00583102211444 0.00199500234133 500.252544561 2015-03-18 20:50:55.070000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.275327121698 0.0907216116436 0.00493344457019 0.00138166901064 0.000261440551032 6.56229645153e-05 15237.5678914 2015-03-18 20:50:55.070000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.178993399273 0.0785307367071 0.0126011025675 0.00468985046855 0.00207359943541 481.253217726 2015-03-18 20:50:55.070000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.234595101551 0.10706462651 0.0181533441413 0.00566430370111 0.00215588161051 462.84736301 2015-03-18 20:50:55.070000
|
||||
87 Notre Dame 3 Midwest 0 1 1 0.899272913857 0.565706816044 0.322418108164 0.076339384605 0.0311875043753 0.0148272518709 66.443381195 2015-03-18 20:50:55.070000
|
||||
111 Northeastern 14 Midwest 0 1 1 0.100727086143 0.0207046831315 0.00357841354488 0.000182248276887 1.7358500994e-05 2.4377693523e-06 410210.080493 2015-03-18 20:50:55.070000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.358771024152 0.173854804735 0.0332997120838 0.0115487130221 0.00479522999997 207.540570527 2015-03-18 20:50:55.070000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0898289004449 0.0342141949627 0.00470292973934 0.00140486185696 0.000517588772779 1931.03572525 2015-03-18 20:50:55.070000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.890706500186 0.529509010378 0.276414783632 0.0590756952193 0.0226124809995 0.0101813245088 97.219047938 2015-03-18 20:50:55.070000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.109293499814 0.0218910650248 0.00392433174421 0.000216212058433 2.55353925847e-05 4.31004215728e-06 232015.292071 2015-03-18 20:50:55.070000
|
||||
275 Wisconsin 1 West 0 1 1 0.98533937085 0.858415404845 0.632155311144 0.326072863554 0.147209788479 0.0961835328179 9.39679008145 2015-03-18 20:50:55.070000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0146606291499 0.00288793950914 0.000374116594834 2.39365048184e-05 1.30062825947e-06 1.60910868642e-07 6214619.60604 2015-03-18 20:50:55.070000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.045799075556 0.0192270220493 0.00463681673861 0.000556255613518 0.000133274257978 7502.32446171 2015-03-18 20:50:55.070000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0928975800898 0.0370000657065 0.00834478394926 0.00130720795527 0.000389259000191 2567.98363175 2015-03-18 20:50:55.070000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.27281289565 0.0721096879296 0.0194101918657 0.0039131419474 0.00142183395329 702.317006664 2015-03-18 20:50:55.070000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0405471838166 0.00347307535692 0.00034268200743 2.93173665889e-05 5.32245433335e-06 187882.246594 2015-03-18 20:50:55.070000
|
||||
153 North Carolina 4 West 0 1 1 0.868066821461 0.638372298534 0.229908428881 0.081823797401 0.024654688929 0.0121354456859 81.403236427 2015-03-18 20:50:55.070000
|
||||
108 Harvard 13 West 0 1 1 0.131933178539 0.0482676219992 0.00575229233807 0.000762181666963 8.16068181105e-05 1.78816284032e-05 55922.3184726 2015-03-18 20:50:55.070000
|
||||
2752 Xavier 6 West 0 1 1 0.55851254097 0.257838264755 0.0446084737467 0.011926886295 0.00267270522995 0.00105694597262 945.122153734 2015-03-18 20:50:55.070000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-18 20:50:55.070000
|
||||
145 Ole Miss 11b West 1 1 1 0.44148745903 0.182154270179 0.0265031930254 0.00615801849415 0.000974974217424 0.000293742374871 3403.34368871 2015-03-18 20:50:55.070000
|
||||
239 Baylor 3 West 0 1 1 0.758454213021 0.469884930802 0.124959144499 0.0472980810043 0.010610563851 0.00418162590996 238.14143004 2015-03-18 20:50:55.070000
|
||||
2247 Georgia State 14 West 0 1 1 0.241545786979 0.0901225342638 0.0079835416373 0.00122120870363 0.000136014515516 3.07616721012e-05 32506.9858049 2015-03-18 20:50:55.070000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.046666780487 0.0215374059361 0.00551527162291 0.001019970884 0.00034792396522 2873.19120257 2015-03-18 20:50:55.070000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129281076435 0.0745305304109 0.0260216251124 0.00724018718662 0.00337226736732 295.536392604 2015-03-18 20:50:55.070000
|
||||
12 Arizona 2 West 0 1 1 0.993295046111 0.823399325526 0.699790606329 0.460436748713 0.169639457793 0.096196682227 9.39536891346 2015-03-18 20:50:55.070000
|
||||
2640 Texas Southern 15 West 0 1 1 0.00670495388921 0.000652817552044 8.71044151874e-05 4.90636697265e-06 1.56581235306e-07 1.21719540659e-08 82156076.3713 2015-03-18 20:50:55.070000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.32694039462 0.166530133978 0.0585114648701 16.0906676532 2015-03-18 20:50:55.070000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-18 20:50:55.070000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 4.57919382087e-05 4.65346868108e-06 2.87796310797e-07 3474678.70395 2015-03-18 20:50:55.070000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0163407182465 0.00432377650467 0.000720640738828 1386.65399473 2015-03-18 20:50:55.070000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00385035469259 0.000883598110994 0.00012676715874 7887.47845086 2015-03-18 20:50:55.070000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.134635220762 0.0503472875152 0.012279911553 80.4338112849 2015-03-18 20:50:55.070000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.00910539791525 0.00195889043654 0.000261215005731 3827.26398966 2015-03-18 20:50:55.070000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.031045999086 0.0099348337478 0.00204099525033 488.957044161 2015-03-18 20:50:55.070000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.00027983477489 2.1727905054e-05 1.00689183399e-06 993154.338281 2015-03-18 20:50:55.070000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.632356290489 0.236931309089 0.100275697183 0.0420307593507 0.0121848650959 0.00223918218289 445.591620656 2015-03-18 20:50:55.070000
|
||||
26 UCLA 11 South 0 1 1 0.367643709511 0.100419512957 0.02910606481 0.00857614576887 0.00186871576086 0.000252725012845 3955.86991463 2015-03-18 20:50:55.070000
|
||||
66 Iowa State 3 South 0 1 1 0.907896808053 0.638937845519 0.315885213385 0.153039772561 0.065648883641 0.0187971620548 52.1995200705 2015-03-18 20:50:55.070000
|
||||
5 UAB 14 South 0 1 1 0.0921031919474 0.0237113324359 0.00316975132403 0.000459597574 5.43458787892e-05 3.88849090453e-06 257168.175536 2015-03-18 20:50:55.070000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0612388770597 0.0236031338836 0.0083048877604 0.00190407340637 524.189835989 2015-03-18 20:50:55.070000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0205843666287 0.00647587473345 0.00183173842171 0.000330161806835 3027.81792897 2015-03-18 20:50:55.070000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.469100945184 0.243502199616 0.104284470992 0.0297276351062 32.6387336708 2015-03-18 20:50:55.070000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.000639084426507 6.8804476932e-05 6.51865313379e-06 3.73091734114e-07 2680304.96382 2015-03-18 20:50:55.070000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.699191049384 0.463179527345 0.287472508035 0.109504224257 8.13206779721 2015-03-18 20:50:55.070000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000551999837886 5.54544047125e-05 5.06962445626e-06 2.00002048023e-07 4999947.79996 2015-03-18 20:50:55.070000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.0554346545427 0.0185328858828 0.00644978281377 0.00114612498591 871.505191227 2015-03-18 20:50:55.070000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0247931581978 0.00680864099661 0.00214830792957 0.000339905514285 2940.99404827 2015-03-18 20:50:55.070000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.42529225224 0.100878942209 0.035198128241 0.0139312333747 0.00289980386346 343.850909608 2015-03-18 20:50:55.070000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0827307269499 0.00672482046422 0.000951076376492 0.000162295209554 1.25962701536e-05 79387.5799374 2015-03-18 20:50:55.070000
|
||||
97 Louisville 4 East 0 1 1 0.754857085264 0.414170735043 0.106952784078 0.0399889918372 0.0179190678023 0.00437910834577 227.356989835 2015-03-18 20:50:55.070000
|
||||
300 UC Irvine 13 East 0 1 1 0.245142914736 0.0778062857676 0.00547259128713 0.000681389602836 0.000103946638309 7.11905629152e-06 140467.056306 2015-03-18 20:50:55.070000
|
||||
2507 Providence 6 East 0 1 1 0.526302213586 0.212030757826 0.0687468000235 0.0219479121046 0.00744915684991 0.00128232297015 778.834739981 2015-03-18 20:50:55.070000
|
||||
68 Boise State 11a East 1 1 0.26621765753 0.0969617992331 0.0284687119808 0.00553552990806 0.00112859680093 0.000310265525014 4.20754908339e-05 23765.8053344 2015-03-18 20:50:55.070000
|
||||
2168 Dayton 11b East 1 1 0.73378234247 0.376735987181 0.157369925767 0.039035861034 0.00980889467768 0.00356990633698 0.000673599283983 1483.56214812 2015-03-18 20:50:55.070000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.581081373124 0.222529358081 0.0824267691581 0.0392667053239 0.0103731886219 95.4023731227 2015-03-18 20:50:55.070000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.021049231303 0.0026017761708 0.000355316663713 4.88787914812e-05 2.99619030895e-06 333756.170569 2015-03-18 20:50:55.070000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.103988099901 0.0398586352755 0.0196831822121 0.00548003766319 181.480497665 2015-03-18 20:50:55.070000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0320382302726 0.0081256422447 0.00278993539795 0.000489442491491 2042.14095606 2015-03-18 20:50:55.070000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.524311814264 0.270822671638 0.170478246899 0.0664473019676 14.0495200014 2015-03-18 20:50:55.070000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00121253034493 0.000129466749222 2.21833659456e-05 1.74558931946e-06 572871.432737 2015-03-18 20:50:55.070000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-05.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-05.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.998983496996 0.940663787245 0.855848872555 0.732191058659 0.535161071576 0.413195681303 1.4201608227 2015-03-18 23:37:50.020000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-18 23:37:50.020000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.00101650300373 0.000103145343717 1.22787725481e-05 1.12409704818e-06 5.38721931785e-08 4.30736210618e-09 232160652.167 2015-03-18 23:37:50.020000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341892180357 0.0172798992049 0.00717774418566 0.00206507216181 0.00073586150769 1357.95136456 2015-03-18 23:37:50.020000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250438493756 0.0120928234771 0.00477417403792 0.00138225574649 0.000495828487164 2015.82643472 2015-03-18 23:37:50.020000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.392345454989 0.052872307851 0.0252484445768 0.00744173074212 0.00269393344427 370.20441937 2015-03-18 23:37:50.020000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130567379496 0.0100484218505 0.00349298272745 0.000659406922633 0.00016465224368 6072.40645745 2015-03-18 23:37:50.020000
|
||||
120 Maryland 4 Midwest 0 1 1 0.724672878302 0.386365553872 0.0469119517188 0.0211621740139 0.00583102211444 0.00199434765375 500.417091508 2015-03-18 23:37:50.020000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.275327121698 0.0907216116436 0.00493344457019 0.00138166901064 0.000261440551032 6.55975770732e-05 15243.4654912 2015-03-18 23:37:50.020000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.178993399273 0.0785307367071 0.0126011025675 0.00468985046855 0.00207303366042 481.384834888 2015-03-18 23:37:50.020000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.234595101551 0.10706462651 0.0181533441413 0.00566430370111 0.00215522185945 462.989354793 2015-03-18 23:37:50.020000
|
||||
87 Notre Dame 3 Midwest 0 1 1 0.899272913857 0.565706816044 0.322418108164 0.076339384605 0.0311875043753 0.0148234589682 66.4606380432 2015-03-18 23:37:50.020000
|
||||
111 Northeastern 14 Midwest 0 1 1 0.100727086143 0.0207046831315 0.00357841354488 0.000182248276887 1.7358500994e-05 2.4366003012e-06 410406.894765 2015-03-18 23:37:50.020000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.358771024152 0.173854804735 0.0332997120838 0.0115487130221 0.00479385343497 207.600453386 2015-03-18 23:37:50.020000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0898289004449 0.0342141949627 0.00470292973934 0.00140486185696 0.000517426818543 1931.6404511 2015-03-18 23:37:50.020000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.890706500186 0.529509010378 0.276414783632 0.0590756952193 0.0226124809995 0.0101785893512 97.2454410423 2015-03-18 23:37:50.020000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.109293499814 0.0218910650248 0.00392433174421 0.000216212058433 2.55353925847e-05 4.30809284168e-06 232120.274251 2015-03-18 23:37:50.020000
|
||||
275 Wisconsin 1 West 0 1 1 0.98533937085 0.858415404845 0.632155311144 0.326072863554 0.147209788479 0.0961670607889 9.39857090147 2015-03-18 23:37:50.020000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0146606291499 0.00288793950914 0.000374116594834 2.39365048184e-05 1.30062825947e-06 1.60830831381e-07 6217712.30417 2015-03-18 23:37:50.020000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.045799075556 0.0192270220493 0.00463681673861 0.000556255613518 0.000133221607083 7505.28987217 2015-03-18 23:37:50.020000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0928975800898 0.0370000657065 0.00834478394926 0.00130720795527 0.000389120640981 2568.89708251 2015-03-18 23:37:50.020000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.27281289565 0.0721096879296 0.0194101918657 0.0039131419474 0.00142138493327 702.539186743 2015-03-18 23:37:50.020000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0405471838166 0.00347307535692 0.00034268200743 2.93173665889e-05 5.32010730728e-06 187965.133433 2015-03-18 23:37:50.020000
|
||||
153 North Carolina 4 West 0 1 1 0.868066821461 0.638372298534 0.229908428881 0.081823797401 0.024654688929 0.0121324433556 81.4236281751 2015-03-18 23:37:50.020000
|
||||
108 Harvard 13 West 0 1 1 0.131933178539 0.0482676219992 0.00575229233807 0.000762181666963 8.16068181105e-05 1.78742904391e-05 55945.2767714 2015-03-18 23:37:50.020000
|
||||
2752 Xavier 6 West 0 1 1 0.55851254097 0.257838264755 0.0446084737467 0.011926886295 0.00267270522995 0.00105663122508 945.403983025 2015-03-18 23:37:50.020000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-18 23:37:50.020000
|
||||
145 Ole Miss 11b West 1 1 1 0.44148745903 0.182154270179 0.0265031930254 0.00615801849415 0.000974974217424 0.000293638622609 3404.54655622 2015-03-18 23:37:50.020000
|
||||
239 Baylor 3 West 0 1 1 0.758454213021 0.469884930802 0.124959144499 0.0472980810043 0.010610563851 0.00418037754168 238.212843823 2015-03-18 23:37:50.020000
|
||||
2247 Georgia State 14 West 0 1 1 0.241545786979 0.0901225342638 0.0079835416373 0.00122120870363 0.000136014515516 3.07492136207e-05 32520.1568769 2015-03-18 23:37:50.020000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.046666780487 0.0215374059361 0.00551527162291 0.001019970884 0.000347809577934 2874.13646387 2015-03-18 23:37:50.020000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129281076435 0.0745305304109 0.0260216251124 0.00724018718662 0.00337138823957 295.613717834 2015-03-18 23:37:50.020000
|
||||
12 Arizona 2 West 0 1 1 0.993295046111 0.823399325526 0.699790606329 0.460436748713 0.169639457793 0.0961763644335 9.39756499312 2015-03-18 23:37:50.020000
|
||||
2640 Texas Southern 15 West 0 1 1 0.00670495388921 0.000652817552044 8.71044151874e-05 4.90636697265e-06 1.56581235306e-07 1.21651752298e-08 82201856.4422 2015-03-18 23:37:50.020000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.32694039462 0.166463745663 0.0584914328161 16.0965208383 2015-03-18 23:37:50.020000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-18 23:37:50.020000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 4.57919382087e-05 4.64907437632e-06 2.8758923844e-07 3477180.57127 2015-03-18 23:37:50.020000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0163407182465 0.00432094799826 0.000720262725408 1387.3822732 2015-03-18 23:37:50.020000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00385035469259 0.000882977561264 0.000126696568906 7891.87356901 2015-03-18 23:37:50.020000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.134635220762 0.0503207364979 0.0122745464243 80.4694055025 2015-03-18 23:37:50.020000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.00910539791525 0.00195747327799 0.000261065553165 3829.45556135 2015-03-18 23:37:50.020000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.031045999086 0.00992900809633 0.00204002124936 489.190972429 2015-03-18 23:37:50.020000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.00027983477489 2.1705858789e-05 1.00612260105e-06 993913.657074 2015-03-18 23:37:50.020000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.632356290489 0.236931309089 0.100275697183 0.0420307593507 0.0121772842979 0.00223805589594 445.816364959 2015-03-18 23:37:50.020000
|
||||
26 UCLA 11 South 0 1 1 0.367643709511 0.100419512957 0.02910606481 0.00857614576887 0.00186737158819 0.000252581155889 3958.12353983 2015-03-18 23:37:50.020000
|
||||
66 Iowa State 3 South 0 1 1 0.907896808053 0.638937845519 0.315885213385 0.153039772561 0.0656178762244 0.0187897111517 52.220615896 2015-03-18 23:37:50.020000
|
||||
5 UAB 14 South 0 1 1 0.0921031919474 0.0237113324359 0.00316975132403 0.000459597574 5.42968109553e-05 3.88579982224e-06 257346.276171 2015-03-18 23:37:50.020000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0612388770597 0.0236031338836 0.00830031307876 0.00190321512203 524.426678479 2015-03-18 23:37:50.020000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0205843666287 0.00647587473345 0.00183058282552 0.000329994470202 3029.35380984 2015-03-18 23:37:50.020000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.469100945184 0.243502199616 0.104235145201 0.0297157986886 32.6521326746 2015-03-18 23:37:50.020000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.000639084426507 6.8804476932e-05 6.51237557392e-06 3.72818850229e-07 2682266.8075 2015-03-18 23:37:50.020000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.699191049384 0.463064371585 0.287415908446 0.109491518021 8.13312755248 2015-03-18 23:37:50.020000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000551999837886 5.5553825819e-05 5.08037389862e-06 2.0050119009e-07 4987500.56819 2015-03-18 23:37:50.020000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.0554346545427 0.0185349730084 0.00645157124023 0.00114669130154 871.074287697 2015-03-18 23:37:50.020000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0247931581978 0.00681076530323 0.00214937546105 0.000340155712031 2938.83009731 2015-03-18 23:37:50.020000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.42529225224 0.100878942209 0.0352007354834 0.0139343105266 0.00290101983717 343.706364013 2015-03-18 23:37:50.020000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0827307269499 0.00672482046422 0.000952229981293 0.000162535023799 1.26188864857e-05 79245.2949195 2015-03-18 23:37:50.020000
|
||||
97 Louisville 4 East 0 1 1 0.754857085264 0.414170735043 0.106952784078 0.0399896132198 0.0179216773292 0.00438053847666 227.282437269 2015-03-18 23:37:50.020000
|
||||
300 UC Irvine 13 East 0 1 1 0.245142914736 0.0778062857676 0.00547259128713 0.000682357657217 0.00010412314697 7.13349297829e-06 140182.778556 2015-03-18 23:37:50.020000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218795394463 0.00748267042365 0.00130101346907 767.631550539 2015-03-18 23:37:50.020000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-18 23:37:50.020000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100926250907 0.00341906516471 0.000586976896451 1702.64456599 2015-03-18 23:37:50.020000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851188457 0.0394109359469 0.0104370775399 94.8122612554 2015-03-18 23:37:50.020000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354657973171 4.90697322916e-05 3.028357927e-06 330210.957802 2015-03-18 23:37:50.020000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.0400197760385 0.0197674705678 0.00550537818273 180.640564337 2015-03-18 23:37:50.020000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817884405851 0.00280937002804 0.000493120773401 2026.90077794 2015-03-18 23:37:50.020000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271467783933 0.170903736834 0.0666250314209 14.0093737845 2015-03-18 23:37:50.020000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.00013105454991 2.24733240063e-05 1.77009490662e-06 564940.459501 2015-03-18 23:37:50.020000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-06.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-06.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.940680256373 0.855976648293 0.732434616049 0.535532303591 0.413463226396 1.41859477738 2015-03-19 10:54:13.360000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 10:54:13.360000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000100511530112 1.19956422918e-05 1.10061069023e-06 5.29819806245e-08 4.23782296839e-09 235970214.712 2015-03-19 10:54:13.360000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341817450811 0.0172887111074 0.00718595904901 0.00207015239469 0.000737469297264 1354.98865432 2015-03-19 10:54:13.360000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250374870161 0.0120990709248 0.00477980986912 0.00138570308787 0.000496931289193 2011.35064434 2015-03-19 10:54:13.360000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0528099285236 0.0252371408258 0.0074497384018 0.00269667994187 369.826357431 2015-03-19 10:54:13.360000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100269739681 0.00348918751217 0.000660142120399 0.000164840570081 6065.46773613 2015-03-19 10:54:13.360000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.046530787227 0.0210211195062 0.00580692809039 0.00198767059038 502.101472065 2015-03-19 10:54:13.360000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.0052558843141 0.00148742761013 0.000280618762082 7.00835813865e-05 14267.6772025 2015-03-19 10:54:13.360000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.178993399273 0.0786363751931 0.0126148237441 0.0046998374904 0.00207698996668 480.465975302 2015-03-19 10:54:13.360000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.234595101551 0.107203937085 0.018172384153 0.00567720671759 0.00215957729626 462.053580778 2015-03-19 10:54:13.360000
|
||||
87 Notre Dame 3 Midwest 0 1 1 0.899272913857 0.565706816044 0.322751551477 0.0764015112537 0.0312427441084 0.0148469669852 66.3538239156 2015-03-19 10:54:13.360000
|
||||
111 Northeastern 14 Midwest 0 1 1 0.100727086143 0.0207046831315 0.00358631509884 0.000182607038652 1.74358973767e-05 2.44612346909e-06 408809.108172 2015-03-19 10:54:13.360000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.174446756753 0.0333990262029 0.0115944016825 0.00481107174897 206.853894553 2015-03-19 10:54:13.360000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0343782697192 0.00472332727142 0.00141251663051 0.000520029604778 1921.96744419 2015-03-19 10:54:13.360000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.275046144367 0.0586524087545 0.022486143189 0.0101248121096 97.7672649307 2015-03-19 10:54:13.360000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00395065030685 0.000217550549677 2.57445102381e-05 4.34018037833e-06 230404.170484 2015-03-19 10:54:13.360000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.62954502379 0.324853852303 0.146671745934 0.0958320810558 9.43491896433 2015-03-19 10:54:13.360000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.00040053206843 2.5507490878e-05 1.38055267461e-06 1.70141818574e-07 5877448.81441 2015-03-19 10:54:13.360000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0201386028874 0.00484526290248 0.000579376362911 0.000138398531626 7224.51018608 2015-03-19 10:54:13.360000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0386008087296 0.00868408015951 0.00135621364999 0.000402750038094 2481.92962238 2015-03-19 10:54:13.360000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.282446532431 0.0750305958048 0.0201452781049 0.00404859872594 0.00146706477236 680.633162243 2015-03-19 10:54:13.360000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0425262940335 0.00368302587073 0.000361924972195 3.08470973779e-05 5.58021389548e-06 179203.60017 2015-03-19 10:54:13.360000
|
||||
153 North Carolina 4 West 0 1 1 0.860863804632 0.624220937403 0.226494761334 0.0807529297312 0.0243707302948 0.0120097379858 82.2657632649 2015-03-19 10:54:13.360000
|
||||
108 Harvard 13 West 0 1 1 0.139136195368 0.0508062361329 0.006106649515 0.000805677303819 8.58886352e-05 1.87444293559e-05 53348.18343 2015-03-19 10:54:13.360000
|
||||
2752 Xavier 6 West 0 1 1 0.567156901744 0.266361285836 0.0470936794567 0.0128741470695 0.0029055623686 0.00115501547611 864.789264895 2015-03-19 10:54:13.360000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 10:54:13.360000
|
||||
145 Ole Miss 11b West 1 1 1 0.432843098256 0.178782474748 0.0260573877171 0.00609402301497 0.000965529703161 0.000291044555425 3434.90004128 2015-03-19 10:54:13.360000
|
||||
239 Baylor 3 West 0 1 1 0.758454213021 0.465939445254 0.123998556699 0.0471169578096 0.0105704436044 0.00416563011489 239.059720239 2015-03-19 10:54:13.360000
|
||||
2247 Georgia State 14 West 0 1 1 0.241545786979 0.0889167941619 0.00788566650184 0.00121537394978 0.000135356721131 3.06072778371e-05 32670.9679327 2015-03-19 10:54:13.360000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.046666780487 0.0214547217402 0.0055217320567 0.00102068279063 0.000347995314974 2872.60190488 2015-03-19 10:54:13.360000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129281076435 0.0743157860485 0.0260460330376 0.00724429249363 0.00337293679576 295.477538879 2015-03-19 10:54:13.360000
|
||||
12 Arizona 2 West 0 1 1 0.993295046111 0.823399325526 0.699107814135 0.460652300604 0.169671524544 0.096188419703 9.39626186902 2015-03-19 10:54:13.360000
|
||||
2640 Texas Southern 15 West 0 1 1 0.00670495388921 0.000652817552044 8.63877015905e-05 4.91948951517e-06 1.56864831484e-07 1.21805090493e-08 82098374.0311 2015-03-19 10:54:13.360000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.326852477776 0.166420858774 0.0584820774192 16.0992557743 2015-03-19 10:54:13.360000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 10:54:13.360000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 4.57331081634e-05 4.64419662917e-06 2.87453453127e-07 3478823.09872 2015-03-19 10:54:13.360000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.016332381281 0.00431904990906 0.000720139729123 1387.61940198 2015-03-19 10:54:13.360000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00384745626957 0.000882403100273 0.000126655184939 7894.45252712 2015-03-19 10:54:13.360000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.13458650021 0.0503041828518 0.0122726278993 80.48214125 2015-03-19 10:54:13.360000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.00910059108416 0.00195661886165 0.000261035658952 3829.89423113 2015-03-19 10:54:13.360000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.031030043543 0.0099244603607 0.00203954146003 489.30628678 2015-03-19 10:54:13.360000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000279488708922 2.16850557849e-05 1.00582219981e-06 994210.501977 2015-03-19 10:54:13.360000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.642861058316 0.240562839918 0.101689448682 0.0425716250013 0.0123150019927 0.00225962949075 441.550428773 2015-03-19 10:54:13.360000
|
||||
26 UCLA 11 South 0 1 1 0.357138941684 0.0946471171372 0.0275234139498 0.00813621160179 0.00177824772905 0.000241620243687 4137.72606343 2015-03-19 10:54:13.360000
|
||||
66 Iowa State 3 South 0 1 1 0.907896808053 0.64083863828 0.316751606496 0.153423495069 0.0657641287377 0.0188271009708 52.1149220238 2015-03-19 10:54:13.360000
|
||||
5 UAB 14 South 0 1 1 0.0921031919474 0.0239514046643 0.00319863111058 0.000463332317513 5.46842630084e-05 3.91046141898e-06 255723.297687 2015-03-19 10:54:13.360000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.061129029482 0.0235650584988 0.00828841052389 0.0019011655859 524.993110446 2015-03-19 10:54:13.360000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0205393890272 0.00646317550128 0.00182741802163 0.00032957147049 3033.24322049 2015-03-19 10:54:13.360000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.468532036444 0.243233883168 0.104132312573 0.0296940825821 32.676743413 2015-03-19 10:54:13.360000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.000636444808488 6.8546861589e-05 6.49113359566e-06 3.71922124052e-07 2688733.91339 2015-03-19 10:54:13.360000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.69963189899 0.463327752792 0.28755237927 0.109537180167 8.12932027715 2015-03-19 10:54:13.360000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000553834431249 5.57266354325e-05 5.09393085136e-06 2.01109015287e-07 4972426.50939 2015-03-19 10:54:13.360000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.055535158829 0.0185649895039 0.00646032279415 0.00114817844386 869.944760675 2015-03-19 10:54:13.360000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0248457925013 0.00682373501735 0.00215285260914 0.000340690062306 2934.21916439 2015-03-19 10:54:13.360000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.100795868316 0.0351763498882 0.0139255460528 0.00290013705061 343.811290828 2015-03-19 10:54:13.360000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00670879850249 0.000950462717138 0.000162292493584 1.26128704553e-05 79283.0934619 2015-03-19 10:54:13.360000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.10580171548 0.0396089723612 0.0177700775176 0.00435079022566 228.84330389 2015-03-19 10:54:13.360000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.0061269329503 0.000792597525361 0.000123567658309 8.67176172268e-06 115315.821654 2015-03-19 10:54:13.360000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218802633395 0.00748209279352 0.00130110570379 767.577062638 2015-03-19 10:54:13.360000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 10:54:13.360000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100939915436 0.00341908194073 0.000587053525012 1702.42218792 2015-03-19 10:54:13.360000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851099103 0.0394083448079 0.0104372255568 94.8109024811 2015-03-19 10:54:13.360000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354788070716 4.90730400919e-05 3.02953126856e-06 330083.066264 2015-03-19 10:54:13.360000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.040019511873 0.0197661199685 0.00550540183269 180.63978405 2015-03-19 10:54:13.360000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817969163936 0.00280931151153 0.000493173218778 2026.68512548 2015-03-19 10:54:13.360000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271454936765 0.170890767257 0.0666226261779 14.0099156603 2015-03-19 10:54:13.360000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000131120418371 2.24782695111e-05 1.770902535e-06 564682.815307 2015-03-19 10:54:13.360000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-07.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-07.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.940680256373 0.855976648293 0.736177098809 0.538297996667 0.41667988754 1.39992385019 2015-03-19 14:47:39.900000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 14:47:39.900000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000100511530112 1.19956422918e-05 1.11911065127e-06 5.40269247272e-08 4.45388694407e-09 224522985.9 2015-03-19 14:47:39.900000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341817450811 0.0172887111074 0.00728527987904 0.00210047885398 0.000756846479058 1320.2719193 2015-03-19 14:47:39.900000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250374870161 0.0120990709248 0.00484741781061 0.0014064981806 0.000510146275833 1959.22209192 2015-03-19 14:47:39.900000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0528099285236 0.0255603196428 0.00755040428504 0.00276367137427 360.837521389 2015-03-19 14:47:39.900000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100269739681 0.00354102110289 0.000670702854985 0.000170104297318 5877.7462502 2015-03-19 14:47:39.900000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.046530787227 0.0212994168279 0.00588829631371 0.00203940593521 489.338869146 2015-03-19 14:47:39.900000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.0052558843141 0.00151086764021 0.000285405962119 7.24068928417e-05 13809.8398352 2015-03-19 14:47:39.900000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.171505347142 0.0761784277256 0.0124238071477 0.00468673662139 0.00211168045724 472.556496947 2015-03-19 14:47:39.900000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.226582707329 0.104550487809 0.0179867666657 0.00569088614227 0.00221118123671 451.246963477 2015-03-19 14:47:39.900000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.601911945528 0.326694615889 0.0711093878676 0.0271553103427 0.0122371692805 80.7182452151 2015-03-19 14:47:39.900000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 14:47:39.900000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.176162484568 0.0338390984108 0.0117797069824 0.00494440669957 201.248734937 2015-03-19 14:47:39.900000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0346568893856 0.00478361266547 0.00143600755326 0.000535965478315 1864.79181022 2015-03-19 14:47:39.900000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.277821671479 0.0594161905992 0.0228327572452 0.0103867808237 95.2762204167 2015-03-19 14:47:39.900000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00393542314482 0.00021859582059 2.60855532662e-05 4.51571020575e-06 221448.108653 2015-03-19 14:47:39.900000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.62954502379 0.324853852303 0.146792234054 0.0963262155237 9.38138989021 2015-03-19 14:47:39.900000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.00040053206843 2.5507490878e-05 1.3946174617e-06 1.75822702212e-07 5687546.66829 2015-03-19 14:47:39.900000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0201386028874 0.00484526290248 0.0005831351745 0.000141416585637 7070.30634991 2015-03-19 14:47:39.900000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0386008087296 0.00868408015951 0.00136327795971 0.000410021296641 2437.89770651 2015-03-19 14:47:39.900000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.282446532431 0.0750305958048 0.0201452781049 0.00406490425792 0.00148857387175 670.783926198 2015-03-19 14:47:39.900000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0425262940335 0.00368302587073 0.000361924972195 3.10970953481e-05 5.72904421698e-06 174548.185192 2015-03-19 14:47:39.900000
|
||||
153 North Carolina 4 West 0 1 1 0.860863804632 0.624220937403 0.226494761334 0.0807529297312 0.0244258075501 0.0121246441986 81.4766470358 2015-03-19 14:47:39.900000
|
||||
108 Harvard 13 West 0 1 1 0.139136195368 0.0508062361329 0.006106649515 0.000805677303819 8.64931934041e-05 1.91831282089e-05 52128.141249 2015-03-19 14:47:39.900000
|
||||
2752 Xavier 6 West 0 1 1 0.567156901744 0.266361285836 0.0470936794567 0.0128741470695 0.00291573555169 0.00117017290893 853.57456105 2015-03-19 14:47:39.900000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 14:47:39.900000
|
||||
145 Ole Miss 11b West 1 1 1 0.432843098256 0.178782474748 0.0260573877171 0.00609402301497 0.000970492887877 0.000296230676807 3374.74761257 2015-03-19 14:47:39.900000
|
||||
239 Baylor 3 West 0 1 1 0.758454213021 0.465939445254 0.123998556699 0.0471169578096 0.0106077365401 0.00422079787055 235.922030069 2015-03-19 14:47:39.900000
|
||||
2247 Georgia State 14 West 0 1 1 0.241545786979 0.0889167941619 0.00788566650184 0.00121537394978 0.000136281083841 3.13045978527e-05 31943.1893074 2015-03-19 14:47:39.900000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.046666780487 0.0214547217402 0.0055217320567 0.00102518853247 0.000353466259956 2828.12434167 2015-03-19 14:47:39.900000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129281076435 0.0743157860485 0.0260460330376 0.00726309414842 0.00340838795873 292.393830781 2015-03-19 14:47:39.900000
|
||||
12 Arizona 2 West 0 1 1 0.993295046111 0.823399325526 0.699107814135 0.460652300604 0.169925640958 0.0968924921259 9.32071709643 2015-03-19 14:47:39.900000
|
||||
2640 Texas Southern 15 West 0 1 1 0.00670495388921 0.000652817552044 8.63877015905e-05 4.91948951517e-06 1.58809853798e-07 1.26848665114e-08 78834096.2369 2015-03-19 14:47:39.900000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.345375939484 0.175226519611 0.0612590266 15.324124876 2015-03-19 14:47:39.900000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 14:47:39.900000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 5.64207464645e-05 5.61905792492e-06 3.40997417361e-07 2932572.53014 2015-03-19 14:47:39.900000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0179622779272 0.00470873543424 0.000777219161267 1285.63837671 2015-03-19 14:47:39.900000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00439260798459 0.000995914817821 0.000141108595171 7085.74052625 2015-03-19 14:47:39.900000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.144491031832 0.0536991635392 0.0130061996554 75.8864100582 2015-03-19 14:47:39.900000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.0100368866979 0.00213677352697 0.000281977905836 3545.37714268 2015-03-19 14:47:39.900000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.0341469257893 0.0108359084075 0.00220579067894 452.352174141 2015-03-19 14:47:39.900000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000342448817539 2.60311411757e-05 1.18327585033e-06 845110.475671 2015-03-19 14:47:39.900000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.642861058316 0.507329529186 0.204312589442 0.0814792712185 0.0221707491965 0.00378458286477 263.229912709 2015-03-19 14:47:39.900000
|
||||
26 UCLA 11 South 0 1 1 0.357138941684 0.243878126851 0.0665308314868 0.0184650320695 0.00375291092113 0.000469332238646 2129.68678786 2015-03-19 14:47:39.900000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 14:47:39.900000
|
||||
5 UAB 14 South 0 1 1 1 0.248792343963 0.0314025358613 0.00430580744679 0.000479326224657 3.2179959899e-05 31074.2407131 2015-03-19 14:47:39.900000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0834770577455 0.0314089365546 0.0107661424346 0.002393216685 416.847663469 2015-03-19 14:47:39.900000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0297930750373 0.00909821383375 0.00249204760674 0.000432984686169 2308.55050362 2015-03-19 14:47:39.900000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.583251323096 0.298312313255 0.125466139266 0.0349768525192 27.5903369793 2015-03-19 14:47:39.900000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0012325873305 0.000125886342582 1.12824891267e-05 6.09823372171e-07 1639818.07817 2015-03-19 14:47:39.900000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.69963189899 0.463327752792 0.294366557799 0.111884458569 7.93779183265 2015-03-19 14:47:39.900000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000553834431249 5.57266354325e-05 5.62416685264e-06 2.205475507e-07 4534168.60119 2015-03-19 14:47:39.900000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.055535158829 0.0185649895039 0.00677530292668 0.00119910344653 832.956405426 2015-03-19 14:47:39.900000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0248457925013 0.00682373501735 0.0022666842265 0.000357094278968 2799.3809047 2015-03-19 14:47:39.900000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.100795868316 0.0351763498882 0.0145285021917 0.00301418309993 330.764848667 2015-03-19 14:47:39.900000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00670879850249 0.000950462717138 0.000175006575675 1.35220469821e-05 73952.300216 2015-03-19 14:47:39.900000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.10580171548 0.0396089723612 0.0184444464529 0.00450033459155 221.205700411 2015-03-19 14:47:39.900000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.0061269329503 0.000792597525361 0.000133711308078 9.32772284098e-06 107206.302044 2015-03-19 14:47:39.900000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218802633395 0.00785239706864 0.00135970703013 734.452548118 2015-03-19 14:47:39.900000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 14:47:39.900000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100939915436 0.00358966571783 0.000613718711997 1628.41096703 2015-03-19 14:47:39.900000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851099103 0.0407989902848 0.0107708388311 91.8432794957 2015-03-19 14:47:39.900000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354788070716 5.33433605714e-05 3.27295386776e-06 305533.401157 2015-03-19 14:47:39.900000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.040019511873 0.0204340847298 0.00567342718019 175.260304088 2015-03-19 14:47:39.900000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817969163936 0.00294783478135 0.000515280979291 1939.68875078 2015-03-19 14:47:39.900000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271454936765 0.174830349196 0.0680080085908 13.7041505952 2015-03-19 14:47:39.900000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000131120418371 2.42355396128e-05 1.89828305944e-06 526790.826448 2015-03-19 14:47:39.900000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-08.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-08.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.940680256373 0.855976648293 0.736177098809 0.536802320747 0.415629403729 1.40598954508 2015-03-19 16:01:30.520000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 16:01:30.520000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000100511530112 1.19956422918e-05 1.11911065127e-06 5.31425965995e-08 4.38608394227e-09 227993811.513 2015-03-19 16:01:30.520000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341817450811 0.0172887111074 0.00728527987904 0.00208064498978 0.00075056302415 1331.33315235 2015-03-19 16:01:30.520000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250374870161 0.0120990709248 0.00484741781061 0.0013932709714 0.000505928210379 1975.56501354 2015-03-19 16:01:30.520000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0528099285236 0.0255603196428 0.00748021477047 0.00274109209193 363.818096752 2015-03-19 16:01:30.520000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100269739681 0.00354102110289 0.000662817062801 0.000168328778525 5939.75480593 2015-03-19 16:01:30.520000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.046530787227 0.0212994168279 0.00583122137747 0.00202201771441 493.55550902 2015-03-19 16:01:30.520000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.0052558843141 0.00151086764021 0.000282046465648 7.16497575232e-05 13955.7813565 2015-03-19 16:01:30.520000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.171505347142 0.0761784277256 0.0124238071477 0.00465045772331 0.00209734423722 475.793452526 2015-03-19 16:01:30.520000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.226582707329 0.104550487809 0.0179867666657 0.00564038577948 0.00219394990408 454.798921453 2015-03-19 16:01:30.520000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.601911945528 0.326694615889 0.0711093878676 0.0269473229385 0.0121547664865 81.2722510639 2015-03-19 16:01:30.520000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 16:01:30.520000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.176162484568 0.0338390984108 0.0116823157037 0.00490852445711 202.727211454 2015-03-19 16:01:30.520000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0346568893856 0.00478361266547 0.00142279904196 0.000531633306276 1879.99576944 2015-03-19 16:01:30.520000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.277821671479 0.0594161905992 0.0226588360703 0.0103173061265 95.924525427 2015-03-19 16:01:30.520000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00393542314482 0.00021859582059 2.57250785494e-05 4.45932738398e-06 224248.06581 2015-03-19 16:01:30.520000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.62954502379 0.323133534014 0.146022977077 0.0958251548408 9.43567319731 2015-03-19 16:01:30.520000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.00040053206843 2.75582859941e-05 1.48585448902e-06 1.84934064835e-07 5407331.61281 2015-03-19 16:01:30.520000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0201386028874 0.00490403965279 0.000587364618596 0.000141839146295 7049.23983941 2015-03-19 16:01:30.520000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0386008087296 0.00881060131153 0.00137653721325 0.000412316736097 2424.31993599 2015-03-19 16:01:30.520000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.282446532431 0.0750305958048 0.0203151407815 0.00408533342811 0.00149185591293 669.306020395 2015-03-19 16:01:30.520000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0425262940335 0.00368302587073 0.000381494513675 3.24284302352e-05 5.91690501901e-06 169006.276065 2015-03-19 16:01:30.520000
|
||||
153 North Carolina 4 West 0 1 1 0.860863804632 0.624220937403 0.226494761334 0.0808034946912 0.0244046756798 0.0121001205237 81.643804914 2015-03-19 16:01:30.520000
|
||||
108 Harvard 13 West 0 1 1 0.139136195368 0.0508062361329 0.006106649515 0.000836457055869 8.90241326879e-05 1.95938977778e-05 51035.2976954 2015-03-19 16:01:30.520000
|
||||
2752 Xavier 6 West 0 1 1 0.567156901744 0.381156475695 0.0652707440254 0.0173532325237 0.00382019159159 0.0014979989928 666.557191165 2015-03-19 16:01:30.520000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 16:01:30.520000
|
||||
145 Ole Miss 11b West 1 1 1 0.432843098256 0.266910789357 0.0375664987509 0.00851947243333 0.00131244764976 0.000389398077395 2567.06609496 2015-03-19 16:01:30.520000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 16:01:30.520000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.351932734948 0.0290580313916 0.00419827527316 0.000440587849666 9.54450197694e-05 10476.2360299 2015-03-19 16:01:30.520000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.046666780487 0.0272274038032 0.00687750235251 0.00125161153024 0.00042435306949 2355.52825889 2015-03-19 16:01:30.520000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.129281076435 0.0895524748104 0.0309288436449 0.00849083795783 0.00393570155284 253.08430659 2015-03-19 16:01:30.520000
|
||||
12 Arizona 2 West 0 1 1 0.993295046111 0.823399325526 0.751189442151 0.492902863714 0.180523830579 0.102386472356 8.76691526709 2015-03-19 16:01:30.520000
|
||||
2640 Texas Southern 15 West 0 1 1 0.00670495388921 0.000652817552044 0.000135405067249 7.48975231424e-06 2.34544009839e-07 1.82075250859e-08 54922345.4081 2015-03-19 16:01:30.520000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.345375939484 0.175226519611 0.061169846392 15.3479240015 2015-03-19 16:01:30.520000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 16:01:30.520000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 5.64207464645e-05 5.61905792492e-06 3.38991058289e-07 2949929.31689 2015-03-19 16:01:30.520000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0179622779272 0.00470873543424 0.000774714736672 1289.79769967 2015-03-19 16:01:30.520000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00439260798459 0.000995914817821 0.000140598479791 7111.45243536 2015-03-19 16:01:30.520000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.144491031832 0.0536991635392 0.0129765676142 76.0619804657 2015-03-19 16:01:30.520000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.0100368866979 0.00213677352697 0.000280906268868 3558.90631333 2015-03-19 16:01:30.520000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.0341469257893 0.0108359084075 0.00219984065538 453.578379372 2015-03-19 16:01:30.520000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000342448817539 2.60311411757e-05 1.17538908992e-06 850781.101495 2015-03-19 16:01:30.520000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.642861058316 0.507329529186 0.204312589442 0.0814792712185 0.0221707491965 0.00377271091613 264.061390133 2015-03-19 16:01:30.520000
|
||||
26 UCLA 11 South 0 1 1 0.357138941684 0.243878126851 0.0665308314868 0.0184650320695 0.00375291092113 0.000467482365081 2138.11812444 2015-03-19 16:01:30.520000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 16:01:30.520000
|
||||
5 UAB 14 South 0 1 1 1 0.248792343963 0.0314025358613 0.00430580744679 0.000479326224657 3.19994286556e-05 31249.5579635 2015-03-19 16:01:30.520000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0834770577455 0.0314089365546 0.0107661424346 0.00238727386238 417.887843476 2015-03-19 16:01:30.520000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0297930750373 0.00909821383375 0.00249204760674 0.000431645811443 2315.71424462 2015-03-19 16:01:30.520000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.583251323096 0.298312313255 0.125466139266 0.0349085778887 27.6462543157 2015-03-19 16:01:30.520000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0012325873305 0.000125886342582 1.12824891267e-05 6.06044031132e-07 1650044.12648 2015-03-19 16:01:30.520000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.69963189899 0.463327752792 0.294366557799 0.111740901282 7.9492745139 2015-03-19 16:01:30.520000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000553834431249 5.57266354325e-05 5.62416685264e-06 2.18990040681e-07 4566416.70963 2015-03-19 16:01:30.520000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.055535158829 0.0185649895039 0.00677530292668 0.00119545137817 835.504117405 2015-03-19 16:01:30.520000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0248457925013 0.00682373501735 0.0022666842265 0.000355901091644 2808.7694092 2015-03-19 16:01:30.520000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.100795868316 0.0351763498882 0.0145285021917 0.0030061928581 331.646655488 2015-03-19 16:01:30.520000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00670879850249 0.000950462717138 0.000175006575675 1.34513326088e-05 74341.0766615 2015-03-19 16:01:30.520000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.10580171548 0.0396089723612 0.0184444464529 0.00449015969245 221.709228289 2015-03-19 16:01:30.520000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.0061269329503 0.000792597525361 0.000133711308078 9.27636289375e-06 107799.871037 2015-03-19 16:01:30.520000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218802633395 0.00785239706864 0.00135549089185 736.740110252 2015-03-19 16:01:30.520000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 16:01:30.520000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100939915436 0.00358966571783 0.000611795948716 1633.53190904 2015-03-19 16:01:30.520000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851099103 0.0407989902848 0.0107484689805 92.0365061123 2015-03-19 16:01:30.520000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354788070716 5.33433605714e-05 3.25379393777e-06 307332.537134 2015-03-19 16:01:30.520000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.040019511873 0.0204340847298 0.00566230022715 175.60667218 2015-03-19 16:01:30.520000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817969163936 0.00294783478135 0.000513695491276 1945.67856149 2015-03-19 16:01:30.520000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271454936765 0.174830349196 0.0679239266993 13.722352617 2015-03-19 16:01:30.520000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000131120418371 2.42355396128e-05 1.88842583278e-06 529540.580422 2015-03-19 16:01:30.520000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-09.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-09.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.940680256373 0.855976648293 0.736177098809 0.54032665789 0.418350816408 1.39033834949 2015-03-19 16:25:50.210000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 16:25:50.210000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000100511530112 1.19956422918e-05 1.11911065127e-06 5.48936399574e-08 4.53108153675e-09 220697859.299 2015-03-19 16:25:50.210000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341817450811 0.0172887111074 0.00728527987904 0.00211959070221 0.000764542711811 1306.97139853 2015-03-19 16:25:50.210000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250374870161 0.0120990709248 0.00484741781061 0.00141925715299 0.000515317527244 1939.55111098 2015-03-19 16:25:50.210000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0528099285236 0.0255603196428 0.00761831213536 0.00279144683891 357.237164348 2015-03-19 16:25:50.210000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100269739681 0.00354102110289 0.000677947799417 0.000172157266627 5807.64240932 2015-03-19 16:25:50.210000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.046530787227 0.0212994168279 0.00594293025206 0.00206056712349 484.303287914 2015-03-19 16:25:50.210000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.0052558843141 0.00151086764021 0.00028849188224 7.32811287399e-05 13645.0780176 2015-03-19 16:25:50.210000
|
||||
2086 Butler 6 Midwest 0 1 1 0.455061866896 0.171505347142 0.0761784277256 0.0124238071477 0.00472364488347 0.00213017568566 468.444847546 2015-03-19 16:25:50.210000
|
||||
251 Texas 11 Midwest 0 1 1 0.544938133104 0.226582707329 0.104550487809 0.0179867666657 0.00574034939599 0.00223263474625 446.90129764 2015-03-19 16:25:50.210000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.601911945528 0.326694615889 0.0711093878676 0.0273675458487 0.0123433452828 80.0153144942 2015-03-19 16:25:50.210000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 16:25:50.210000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.176162484568 0.0338390984108 0.0118769657105 0.00498988590667 199.405383751 2015-03-19 16:25:50.210000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0346568893856 0.00478361266547 0.00144882211362 0.000541307918867 1846.37737089 2015-03-19 16:25:50.210000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.277821671479 0.0594161905992 0.0230105096523 0.0104766011061 94.4508041182 2015-03-19 16:25:50.210000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00393542314482 0.00021859582059 2.64128440672e-05 4.57835059109e-06 218418.27133 2015-03-19 16:25:50.210000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.62954502379 0.330337813819 0.14927153542 0.0979537302009 9.20890167173 2015-03-19 16:25:50.210000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.00040053206843 2.85195157138e-05 1.53954342206e-06 1.91829996471e-07 5212948.06114 2015-03-19 16:25:50.210000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0201386028874 0.00505944595278 0.000606235260301 0.000146450729953 6827.23499974 2015-03-19 16:25:50.210000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0386008087296 0.00909385999976 0.00142140285936 0.000425912024845 2346.90271621 2015-03-19 16:25:50.210000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.282446532431 0.0750305958048 0.0209415722254 0.00421254703933 0.00153868720052 648.904671762 2015-03-19 16:25:50.210000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0425262940335 0.00368302587073 0.000394809925903 3.35923329464e-05 6.13453576756e-06 163010.520006 2015-03-19 16:25:50.210000
|
||||
153 North Carolina 4 West 0 1 1 0.860863804632 0.624220937403 0.226494761334 0.0830622465489 0.0250895344211 0.0124407063683 79.3812878786 2015-03-19 16:25:50.210000
|
||||
108 Harvard 13 West 0 1 1 0.139136195368 0.0508062361329 0.006106649515 0.000865265003784 9.21619480786e-05 2.02985174279e-05 49263.6816966 2015-03-19 16:25:50.210000
|
||||
2752 Xavier 6 West 0 1 1 0.567156901744 0.381156475695 0.0673157733152 0.0179153838872 0.00394808450863 0.00154948076283 644.37748644 2015-03-19 16:25:50.210000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 16:25:50.210000
|
||||
145 Ole Miss 11b West 1 1 1 0.432843098256 0.266910789357 0.0387588513553 0.00880122825819 0.00135774014802 0.000403316518848 2478.44220796 2015-03-19 16:25:50.210000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 16:25:50.210000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.351932734948 0.0299650156244 0.00433837115572 0.000456264920341 9.90289976483e-05 10097.0523256 2015-03-19 16:25:50.210000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.0472226275714 0.027650784904 0.00703063063468 0.00128852152947 0.000439457432659 2274.53325006 2015-03-19 16:25:50.210000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.131828351493 0.0914663882186 0.0316957083157 0.00873242157245 0.00405908284937 245.361071481 2015-03-19 16:25:50.210000
|
||||
12 Arizona 2 West 0 1 1 1 0.820949020935 0.744843186582 0.480435144757 0.170900925339 0.0948307041051 9.54510782596 2015-03-19 16:25:50.210000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 16:25:50.210000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.345375939484 0.175226519611 0.0614309455092 15.2784406411 2015-03-19 16:25:50.210000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 16:25:50.210000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 5.64207464645e-05 5.61905792492e-06 3.43333882756e-07 2912615.69828 2015-03-19 16:25:50.210000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0179622779272 0.00470873543424 0.000780909556473 1279.55802584 2015-03-19 16:25:50.210000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00439260798459 0.000995914817821 0.000141829001818 7049.74411567 2015-03-19 16:25:50.210000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.144491031832 0.0536991635392 0.0130555345177 75.595868108 2015-03-19 16:25:50.210000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.0100368866979 0.00213677352697 0.000283463108409 3526.79592947 2015-03-19 16:25:50.210000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.0341469257893 0.0108359084075 0.0022151348122 450.43979251 2015-03-19 16:25:50.210000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000342448817539 2.60311411757e-05 1.1919861432e-06 838934.926989 2015-03-19 16:25:50.210000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.642861058316 0.507329529186 0.204312589442 0.0814792712185 0.0221707491965 0.00380224851472 262.002272505 2015-03-19 16:25:50.210000
|
||||
26 UCLA 11 South 0 1 1 0.357138941684 0.243878126851 0.0665308314868 0.0184650320695 0.00375291092113 0.000471860757597 2118.26926302 2015-03-19 16:25:50.210000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 16:25:50.210000
|
||||
5 UAB 14 South 0 1 1 1 0.248792343963 0.0314025358613 0.00430580744679 0.000479326224657 3.23944089001e-05 30868.5245245 2015-03-19 16:25:50.210000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0834770577455 0.0314089365546 0.0107661424346 0.00240282287461 415.177160025 2015-03-19 16:25:50.210000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0297930750373 0.00909821383375 0.00249204760674 0.000434987344448 2297.91745763 2015-03-19 16:25:50.210000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.583251323096 0.298312313255 0.125466139266 0.0350965762634 27.4928077455 2015-03-19 16:25:50.210000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0012325873305 0.000125886342582 1.12824891267e-05 6.14129232381e-07 1628320.77215 2015-03-19 16:25:50.210000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.69963189899 0.463327752792 0.294366557799 0.112172339586 7.91485373031 2015-03-19 16:25:50.210000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000553834431249 5.57266354325e-05 5.62416685264e-06 2.22225093935e-07 4499940.84857 2015-03-19 16:25:50.210000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.055535158829 0.0185649895039 0.00677530292668 0.00120459612232 829.153759812 2015-03-19 16:25:50.210000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0248457925013 0.00682373501735 0.0022666842265 0.000358829280516 2785.84057935 2015-03-19 16:25:50.210000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.100795868316 0.0351763498882 0.0145285021917 0.00302680823103 329.381023069 2015-03-19 16:25:50.210000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00670879850249 0.000950462717138 0.000175006575675 1.36085065836e-05 73482.4490368 2015-03-19 16:25:50.210000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.10580171548 0.0396089723612 0.0184444464529 0.00451731912609 220.370235772 2015-03-19 16:25:50.210000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.0061269329503 0.000792597525361 0.000133711308078 9.38920546558e-06 106504.28457 2015-03-19 16:25:50.210000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218802633395 0.00785239706864 0.00136600712092 731.060605456 2015-03-19 16:25:50.210000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 16:25:50.210000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100939915436 0.00358966571783 0.000616581123438 1620.84660215 2015-03-19 16:25:50.210000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851099103 0.0407989902848 0.0108092644397 91.5132330306 2015-03-19 16:25:50.210000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354788070716 5.33433605714e-05 3.29531363641e-06 303460.251442 2015-03-19 16:25:50.210000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.040019511873 0.0204340847298 0.00569290847187 174.657136408 2015-03-19 16:25:50.210000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817969163936 0.00294783478135 0.000517656761534 1930.78197274 2015-03-19 16:25:50.210000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271454936765 0.174830349196 0.0681785633893 13.6673668421 2015-03-19 16:25:50.210000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000131120418371 2.42355396128e-05 1.91036984829e-06 523457.84798 2015-03-19 16:25:50.210000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-10.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-10.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.940680256373 0.855976648293 0.736641317867 0.540668333242 0.418616006349 1.38882408898 2015-03-19 17:18:24.590000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000100511530112 1.19956422918e-05 1.12639522789e-06 5.52270440303e-08 4.55680938491e-09 219451794.222 2015-03-19 17:18:24.590000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341817450811 0.0172887111074 0.00730581721158 0.00212528012787 0.000766503087404 1303.62618668 2015-03-19 17:18:24.590000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250374870161 0.0120990709248 0.0048617460457 0.00142325170944 0.00051670310248 1934.34738847 2015-03-19 17:18:24.590000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0528099285236 0.0256225700766 0.00763601290424 0.00279765347173 356.442410257 2015-03-19 17:18:24.590000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100269739681 0.00355267767964 0.000680051572702 0.000172662321445 5790.6515406 2015-03-19 17:18:24.590000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.046530787227 0.0213546117969 0.0059575948957 0.00206542362567 483.162177469 2015-03-19 17:18:24.590000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.0052558843141 0.00151664544128 0.000289532810732 7.35313432492e-05 13598.642762 2015-03-19 17:18:24.590000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0269480455412 0.0102046848958 0.00458551335558 217.078091253 2015-03-19 17:18:24.590000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.073402490679 0.0281729469996 0.0126756222185 77.8915907053 2015-03-19 17:18:24.590000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0340303507454 0.0119396650318 0.00501457305675 198.418771784 2015-03-19 17:18:24.590000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00481796938202 0.0014585033204 0.000544684414476 1834.925489 2015-03-19 17:18:24.590000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0597234858488 0.0231221629591 0.0105244592163 94.0167585291 2015-03-19 17:18:24.590000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.000221145289967 2.66950745027e-05 4.62323567913e-06 216297.728727 2015-03-19 17:18:24.590000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.62954502379 0.330337813819 0.1489326856 0.0977474012129 9.23045101549 2015-03-19 17:18:24.590000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.00040053206843 2.85195157138e-05 1.52023716435e-06 1.89661438708e-07 5272552.06515 2015-03-19 17:18:24.590000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0201386028874 0.00505944595278 0.000601084580638 0.000145335953528 6879.60989538 2015-03-19 17:18:24.590000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0386008087296 0.00909385999976 0.00141124325306 0.000423182448678 2362.04696266 2015-03-19 17:18:24.590000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.282446532431 0.0750305958048 0.0209415722254 0.00418772394113 0.00153053488842 652.366354185 2015-03-19 17:18:24.590000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0425262940335 0.00368302587073 0.000394809925903 3.32481924952e-05 6.0781506533e-06 164522.727206 2015-03-19 17:18:24.590000
|
||||
153 North Carolina 4 West 0 1 1 0.860863804632 0.624220937403 0.226494761334 0.0830622465489 0.0249899087792 0.0123958261471 79.6723156755 2015-03-19 17:18:24.590000
|
||||
108 Harvard 13 West 0 1 1 0.139136195368 0.0508062361329 0.006106649515 0.000865265003784 9.13235054201e-05 2.01330241709e-05 49668.6368867 2015-03-19 17:18:24.590000
|
||||
2752 Xavier 6 West 0 1 1 0.567156901744 0.381156475695 0.0673157733152 0.0179153838872 0.00392657365392 0.00154188104135 647.558464096 2015-03-19 17:18:24.590000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
145 Ole Miss 11b West 1 1 1 0.432843098256 0.266910789357 0.0387588513553 0.00880122825819 0.00134794588427 0.000400708404188 2494.58030116 2015-03-19 17:18:24.590000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.351932734948 0.0299650156244 0.00433837115572 0.000452084458062 9.82159312376e-05 10180.6475942 2015-03-19 17:18:24.590000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.0472226275714 0.027650784904 0.00703063063468 0.00128033707313 0.000436952185193 2287.57992679 2015-03-19 17:18:24.590000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.131828351493 0.0914663882186 0.0316957083157 0.00869407522252 0.00404295955055 246.34355798 2015-03-19 17:18:24.590000
|
||||
12 Arizona 2 West 0 1 1 1 0.820949020935 0.744843186582 0.480435144757 0.170345474849 0.0945476289886 9.57667982474 2015-03-19 17:18:24.590000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.345375939484 0.175226519611 0.0613715511037 15.2941946556 2015-03-19 17:18:24.590000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 5.64207464645e-05 5.61905792492e-06 3.4218533689e-07 2922391.90289 2015-03-19 17:18:24.590000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0179622779272 0.00470873543424 0.000779425669543 1281.99597906 2015-03-19 17:18:24.590000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00439260798459 0.000995914817821 0.000141530033062 7064.63814313 2015-03-19 17:18:24.590000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.144491031832 0.0536991635392 0.0130372104655 75.7035250867 2015-03-19 17:18:24.590000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.0100368866979 0.00213677352697 0.000282837659868 3534.59706464 2015-03-19 17:18:24.590000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.0341469257893 0.0108359084075 0.00221153755436 451.174098526 2015-03-19 17:18:24.590000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000342448817539 2.60311411757e-05 1.18746507468e-06 842129.030875 2015-03-19 17:18:24.590000
|
||||
2567 Southern Methodist 6 South 0 1 1 0.642861058316 0.507329529186 0.204312589442 0.0814792712185 0.0221707491965 0.00379519462117 262.491098565 2015-03-19 17:18:24.590000
|
||||
26 UCLA 11 South 0 1 1 0.357138941684 0.243878126851 0.0665308314868 0.0184650320695 0.00375291092113 0.000470784137803 2123.11574584 2015-03-19 17:18:24.590000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
5 UAB 14 South 0 1 1 1 0.248792343963 0.0314025358613 0.00430580744679 0.000479326224657 3.22910220191e-05 30967.3601656 2015-03-19 17:18:24.590000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0834770577455 0.0314089365546 0.0107661424346 0.00239919143386 415.807090042 2015-03-19 17:18:24.590000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0297930750373 0.00909821383375 0.00249204760674 0.000434190612022 2302.13593227 2015-03-19 17:18:24.590000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.583251323096 0.298312313255 0.125466139266 0.0350533582288 27.5279371372 2015-03-19 17:18:24.590000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0012325873305 0.000125886342582 1.12824891267e-05 6.11965453408e-07 1634078.16972 2015-03-19 17:18:24.590000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.69963189899 0.463327752792 0.294366557799 0.112074375608 7.92264618538 2015-03-19 17:18:24.590000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000553834431249 5.57266354325e-05 5.62416685264e-06 2.21330492743e-07 4518129.2748 2015-03-19 17:18:24.590000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.055535158829 0.0185649895039 0.00677530292668 0.00120241928225 830.656656511 2015-03-19 17:18:24.590000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0248457925013 0.00682373501735 0.0022666842265 0.00035812487181 2791.32211643 2015-03-19 17:18:24.590000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.100795868316 0.0351763498882 0.0145285021917 0.00302196695822 329.910302404 2015-03-19 17:18:24.590000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00670879850249 0.000950462717138 0.000175006575675 1.3567951574e-05 73702.0932446 2015-03-19 17:18:24.590000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.10580171548 0.0396089723612 0.0184444464529 0.00451102019163 220.679344698 2015-03-19 17:18:24.590000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.0061269329503 0.000792597525361 0.000133711308078 9.35978416383e-06 106839.070508 2015-03-19 17:18:24.590000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218802633395 0.00785239706864 0.00136349894374 732.407242146 2015-03-19 17:18:24.590000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 17:18:24.590000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100939915436 0.00358966571783 0.000615438532698 1623.85763707 2015-03-19 17:18:24.590000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851099103 0.0407989902848 0.0107952405333 91.6334153381 2015-03-19 17:18:24.590000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354788070716 5.33433605714e-05 3.28434526802e-06 304473.687767 2015-03-19 17:18:24.590000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.040019511873 0.0204340847298 0.00568587036308 174.874569088 2015-03-19 17:18:24.590000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817969163936 0.00294783478135 0.000516712771414 1934.31117349 2015-03-19 17:18:24.590000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271454936765 0.174830349196 0.068120758716 13.6798130093 2015-03-19 17:18:24.590000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000131120418371 2.42355396128e-05 1.90471556511e-06 525011.772678 2015-03-19 17:18:24.590000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-11.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-11.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.940680256373 0.855976648293 0.736641317867 0.540668333242 0.418233659101 1.39100794075 2015-03-19 17:46:50.800000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000100511530112 1.19956422918e-05 1.12639522789e-06 5.52270440303e-08 4.52389180035e-09 221048610.269 2015-03-19 17:46:50.800000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341817450811 0.0172887111074 0.00730581721158 0.00212528012787 0.000763904428694 1308.06427877 2015-03-19 17:46:50.800000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250374870161 0.0120990709248 0.0048617460457 0.00142325170944 0.000514961632775 1940.89224275 2015-03-19 17:46:50.800000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0528099285236 0.0256225700766 0.00763601290424 0.00278830182521 357.641231361 2015-03-19 17:46:50.800000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100269739681 0.00355267767964 0.000680051572702 0.000171899670858 5816.3467989 2015-03-19 17:46:50.800000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.046530787227 0.0213546117969 0.0059575948957 0.00205817548065 484.86722046 2015-03-19 17:46:50.800000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.0052558843141 0.00151664544128 0.000289532810732 7.32066117832e-05 13658.9683504 2015-03-19 17:46:50.800000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0269480455412 0.0102046848958 0.00457307651412 217.671171784 2015-03-19 17:46:50.800000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.073402490679 0.0281729469996 0.0126412937347 78.1058273768 2015-03-19 17:46:50.800000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0340303507454 0.0119396650318 0.00499991314657 199.003474198 2015-03-19 17:46:50.800000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00481796938202 0.0014585033204 0.000542895362637 1840.97557913 2015-03-19 17:46:50.800000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0597234858488 0.0231221629591 0.0104963407862 94.2712969566 2015-03-19 17:46:50.800000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.000221145289967 2.66950745027e-05 4.59800820736e-06 217484.475211 2015-03-19 17:46:50.800000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.62954502379 0.330337813819 0.1489326856 0.097602816842 9.24560594003 2015-03-19 17:46:50.800000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.00040053206843 2.85195157138e-05 1.52023716435e-06 1.88470390117e-07 5305872.2429 2015-03-19 17:46:50.800000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0201386028874 0.00505944595278 0.000601084580638 0.000144674029174 6911.09061992 2015-03-19 17:46:50.800000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0386008087296 0.00909385999976 0.00141124325306 0.00042151560878 2371.39138758 2015-03-19 17:46:50.800000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.282446532431 0.0750305958048 0.0209415722254 0.00418772394113 0.00152540746345 654.562545721 2015-03-19 17:46:50.800000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0425262940335 0.00368302587073 0.000394809925903 3.32481924952e-05 6.04584643633e-06 165401.811754 2015-03-19 17:46:50.800000
|
||||
153 North Carolina 4 West 0 1 1 0.860863804632 0.624220937403 0.226494761334 0.0830622465489 0.0249899087792 0.0123660937482 79.8662800364 2015-03-19 17:46:50.800000
|
||||
108 Harvard 13 West 0 1 1 0.139136195368 0.0508062361329 0.006106649515 0.000865265003784 9.13235054201e-05 2.00361731223e-05 49908.7304608 2015-03-19 17:46:50.800000
|
||||
2752 Xavier 6 West 0 1 1 0.567156901744 0.381156475695 0.0673157733152 0.0179153838872 0.00392657365392 0.00153705315528 649.595587125 2015-03-19 17:46:50.800000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
145 Ole Miss 11b West 1 1 1 0.432843098256 0.266910789357 0.0387588513553 0.00880122825819 0.00134794588427 0.000399119937047 2504.51252187 2015-03-19 17:46:50.800000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.351932734948 0.0299650156244 0.00433837115572 0.000452084458062 9.77395108003e-05 10230.2769095 2015-03-19 17:46:50.800000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.0472226275714 0.027650784904 0.00703063063468 0.00128033707313 0.00043539821194 2295.74806321 2015-03-19 17:46:50.800000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.131828351493 0.0914663882186 0.0316957083157 0.00869407522252 0.0040324314837 246.989334485 2015-03-19 17:46:50.800000
|
||||
12 Arizona 2 West 0 1 1 1 0.820949020935 0.744843186582 0.480435144757 0.170345474849 0.0943552104467 9.59824884355 2015-03-19 17:46:50.800000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.352484175894 0.178584459657 0.0624348209785 15.0167032487 2015-03-19 17:46:50.800000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 6.24258344045e-05 6.1578099196e-06 3.71091145385e-07 2694754.75593 2015-03-19 17:46:50.800000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0186937788967 0.00488048977853 0.000804003465165 1242.77573397 2015-03-19 17:46:50.800000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00466196771323 0.00105098822527 0.00014838148646 6738.38524176 2015-03-19 17:46:50.800000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.148575713265 0.0550820154672 0.0133329190189 74.002330591 2015-03-19 17:46:50.800000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.0104606616885 0.00221666859077 0.00029185444378 3425.36550963 2015-03-19 17:46:50.800000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.0355483163444 0.0112392629679 0.0022838224275 436.862413451 2015-03-19 17:46:50.800000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000377512065581 2.84059742012e-05 1.2815973054e-06 780275.297229 2015-03-19 17:46:50.800000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0449337806251 0.00855347959917 0.000995674907746 1003.34387994 2015-03-19 17:46:50.800000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.00557912643014 0.000609284146482 4.01897588683e-05 24880.9606825 2015-03-19 17:46:50.800000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0363199285655 0.0123177140754 0.00270997871084 368.006588871 2015-03-19 17:46:50.800000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107836451272 0.00291815655864 0.000501269305999 1993.93563247 2015-03-19 17:46:50.800000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331354063503 0.13822955531 0.0382273158198 25.1593046374 2015-03-19 17:46:50.800000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000164904047573 1.45824347882e-05 7.79486056104e-07 1282895.58573 2015-03-19 17:46:50.800000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.69963189899 0.463327752792 0.292985172718 0.111625599082 7.95851854972 2015-03-19 17:46:50.800000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000553834431249 5.57266354325e-05 5.58497480374e-06 2.19708828583e-07 4551477.4565 2015-03-19 17:46:50.800000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.055535158829 0.0185649895039 0.00672535634174 0.00119462818702 836.080533398 2015-03-19 17:46:50.800000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0248457925013 0.00682373501735 0.00224940429859 0.000355703441723 2810.33068366 2015-03-19 17:46:50.800000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.100795868316 0.0351763498882 0.0144273835055 0.00300366518899 331.926587046 2015-03-19 17:46:50.800000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00670879850249 0.000950462717138 0.00017358482261 1.34633655752e-05 74274.6329696 2015-03-19 17:46:50.800000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.10580171548 0.0396089723612 0.0183251707176 0.00448584743945 221.92331906 2015-03-19 17:46:50.800000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.0061269329503 0.000792597525361 0.000132634404607 9.28737141969e-06 107672.09229 2015-03-19 17:46:50.800000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218802633395 0.00779412831621 0.00135459374435 737.228715562 2015-03-19 17:46:50.800000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 17:46:50.800000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100939915436 0.00356293619985 0.000611402763842 1634.58305448 2015-03-19 17:46:50.800000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851099103 0.0405465573799 0.0107377994748 92.1289508941 2015-03-19 17:46:50.800000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354788070716 5.29214540875e-05 3.25890790465e-06 306850.260992 2015-03-19 17:46:50.800000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.040019511873 0.0203110693066 0.00565650940721 175.787472275 2015-03-19 17:46:50.800000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817969163936 0.00292599565635 0.000513342004956 1947.01904061 2015-03-19 17:46:50.800000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271454936765 0.174026840713 0.0678541656743 13.7374887019 2015-03-19 17:46:50.800000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000131120418371 2.40385952606e-05 1.88998484689e-06 529103.771208 2015-03-19 17:46:50.800000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-12.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-12.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.940680256373 0.855976648293 0.736641317867 0.540522436096 0.418097422343 1.39178704905 2015-03-19 18:52:30.290000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000100511530112 1.19956422918e-05 1.12639522789e-06 5.45792495997e-08 4.47579308805e-09 223424089.508 2015-03-19 18:52:30.290000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341817450811 0.0172887111074 0.00730581721158 0.0021193587163 0.000761804294636 1311.67309339 2015-03-19 18:52:30.290000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250374870161 0.0120990709248 0.0048617460457 0.00141931903117 0.000513557346685 1946.20220917 2015-03-19 18:52:30.290000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0528099285236 0.0256225700766 0.00761540742548 0.00278084616749 358.602775475 2015-03-19 18:52:30.290000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100269739681 0.00355267767964 0.000677016432101 0.0001711690883 5841.17635282 2015-03-19 18:52:30.290000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.046530787227 0.0213546117969 0.00594007692417 0.00205221936798 486.27734257 2015-03-19 18:52:30.290000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.0052558843141 0.00151664544128 0.000288237194104 7.28949035669e-05 13717.3801757 2015-03-19 18:52:30.290000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0269480455412 0.0101854323054 0.00456429145048 218.092056423 2015-03-19 18:52:30.290000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.073402490679 0.0281209904556 0.0126174025597 78.2556150339 2015-03-19 18:52:30.290000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0340303507454 0.0119141890337 0.00498914027573 199.435334493 2015-03-19 18:52:30.290000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00481796938202 0.00145464967346 0.000541474864326 1845.80779457 2015-03-19 18:52:30.290000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0597234858488 0.0230801479218 0.0104768105971 94.4488955136 2015-03-19 18:52:30.290000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.000221145289967 2.65180325179e-05 4.56974030324e-06 218829.816117 2015-03-19 18:52:30.290000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.62954502379 0.331579979951 0.149424423975 0.0978937190831 9.21515996497 2015-03-19 18:52:30.290000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.00040053206843 2.79125520884e-05 1.49248968731e-06 1.85556018843e-07 5389207.10134 2015-03-19 18:52:30.290000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0201386028874 0.00505726033847 0.000601028398068 0.00014470341844 6909.68677424 2015-03-19 18:52:30.290000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0386008087296 0.0090834952096 0.00141021949212 0.000421359010932 2372.27308555 2015-03-19 18:52:30.290000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.282446532431 0.0750305958048 0.0209545308964 0.00419070262854 0.00152660941971 654.046396997 2015-03-19 18:52:30.290000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0425262940335 0.00368302587073 0.000389602632738 3.2879488337e-05 5.99020920564e-06 166938.077697 2015-03-19 18:52:30.290000
|
||||
153 North Carolina 4 West 0 1 1 0.860863804632 0.624220937403 0.226494761334 0.0832846609794 0.0250499883709 0.0123932000459 79.6894100231 2015-03-19 18:52:30.290000
|
||||
108 Harvard 13 West 0 1 1 0.139136195368 0.0508062361329 0.006106649515 0.000858092152596 9.07027252154e-05 1.99263986233e-05 50183.6830883 2015-03-19 18:52:30.290000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.133903822053 0.0384336527645 0.00910244111749 0.00379446808509 262.54154985 2015-03-19 18:52:30.290000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0261723346138 0.00381841206127 0.000401051530493 8.73132925646e-05 11452.0098525 2015-03-19 18:52:30.290000
|
||||
2670 Virginia Commonwealth 7 West 0 1 1 0.363931963147 0.0472226275714 0.0256591606979 0.00655053624524 0.0011980762319 0.000408900124272 2444.58497452 2015-03-19 18:52:30.290000
|
||||
194 Ohio State 10 West 0 1 1 0.636068036853 0.131828351493 0.0862672714591 0.0299896075406 0.00825423872713 0.00383873678644 259.502362009 2015-03-19 18:52:30.290000
|
||||
12 Arizona 2 West 0 1 1 1 0.820949020935 0.727997411176 0.469972256676 0.166878921005 0.0925365573206 9.80653991196 2015-03-19 18:52:30.290000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.352484175894 0.178584459657 0.0624524976619 15.0121698481 2015-03-19 18:52:30.290000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 6.24258344045e-05 6.1578099196e-06 3.70979451769e-07 2695566.08662 2015-03-19 18:52:30.290000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0186937788967 0.00488048977853 0.000804153836811 1242.54315583 2015-03-19 18:52:30.290000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00466196771323 0.00105098822527 0.000148402051614 6737.45131604 2015-03-19 18:52:30.290000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.148575713265 0.0550820154672 0.0133364568292 73.9824344507 2015-03-19 18:52:30.290000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.0104606616885 0.00221666859077 0.000291887569875 3424.97665405 2015-03-19 18:52:30.290000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.0355483163444 0.0112392629679 0.00228436431672 436.758545202 2015-03-19 18:52:30.290000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000377512065581 2.84059742012e-05 1.28093669467e-06 780677.705012 2015-03-19 18:52:30.290000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0449337806251 0.00855347959917 0.000995739036563 1003.27919694 2015-03-19 18:52:30.290000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.00557912643014 0.000609284146482 4.01800855574e-05 24886.9509869 2015-03-19 18:52:30.290000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0363199285655 0.0123177140754 0.00271066049646 367.913776293 2015-03-19 18:52:30.290000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107836451272 0.00291815655864 0.000501368800271 1993.53974691 2015-03-19 18:52:30.290000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331354063503 0.13822955531 0.0382379526655 25.1520277706 2015-03-19 18:52:30.290000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000164904047573 1.45824347882e-05 7.79185244333e-07 1283390.85999 2015-03-19 18:52:30.290000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.69963189899 0.463327752792 0.292985172718 0.111656762407 7.95601823342 2015-03-19 18:52:30.290000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000553834431249 5.57266354325e-05 5.58497480374e-06 2.19570811545e-07 4554338.40861 2015-03-19 18:52:30.290000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.055535158829 0.0185649895039 0.00672535634174 0.00119487564943 835.907171451 2015-03-19 18:52:30.290000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0248457925013 0.00682373501735 0.00224940429859 0.000355765735708 2809.83842436 2015-03-19 18:52:30.290000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.100795868316 0.0351763498882 0.0144273835055 0.00300439183143 331.846065396 2015-03-19 18:52:30.290000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00670879850249 0.000950462717138 0.00017358482261 1.34614723797e-05 74285.0789513 2015-03-19 18:52:30.290000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.10580171548 0.0396089723612 0.0183251707176 0.00448704388686 221.863877692 2015-03-19 18:52:30.290000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.0061269329503 0.000792597525361 0.000132634404607 9.28548992784e-06 107693.909776 2015-03-19 18:52:30.290000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218802633395 0.00779412831621 0.00135486677528 737.079948704 2015-03-19 18:52:30.290000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 18:52:30.290000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100939915436 0.00356293619985 0.000611523952267 1634.2589237 2015-03-19 18:52:30.290000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851099103 0.0405465573799 0.0107407508648 92.1033605181 2015-03-19 18:52:30.290000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354788070716 5.29214540875e-05 3.25797496102e-06 306938.12997 2015-03-19 18:52:30.290000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.040019511873 0.0203110693066 0.00565808603676 175.738210325 2015-03-19 18:52:30.290000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817969163936 0.00292599565635 0.000513446724392 1946.62173463 2015-03-19 18:52:30.290000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271454936765 0.174026840713 0.0678730012162 13.7333988785 2015-03-19 18:52:30.290000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000131120418371 2.40385952606e-05 1.88973407282e-06 529173.985192 2015-03-19 18:52:30.290000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-13.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-13.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.940680256373 0.855976648293 0.736641317867 0.540290866208 0.417914368573 1.39283469342 2015-03-19 19:27:42.750000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000100511530112 1.19956422918e-05 1.12639522789e-06 5.44027920733e-08 4.46312257966e-09 224058375.653 2015-03-19 19:27:42.750000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 0.53688702047 0.0341817450811 0.0172887111074 0.00730581721158 0.00211655817925 0.000760851851174 1313.3163133 2015-03-19 19:27:42.750000
|
||||
2509 Purdue 9 Midwest 0 1 1 0.46311297953 0.0250374870161 0.0120990709248 0.0048617460457 0.00141745205602 0.000512918292341 1948.62826425 2015-03-19 19:27:42.750000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0528099285236 0.0256225700766 0.00760551931221 0.00277741637523 359.046843865 2015-03-19 19:27:42.750000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100269739681 0.00355267767964 0.000675846110434 0.000170896983826 5850.47834449 2015-03-19 19:27:42.750000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.046530787227 0.0213546117969 0.00593199078925 0.00204957853277 486.905188316 2015-03-19 19:27:42.750000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.0052558843141 0.00151664544128 0.000287738157219 7.27789542746e-05 13739.235896 2015-03-19 19:27:42.750000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0269480455412 0.0101745063483 0.00455956777763 218.319033902 2015-03-19 19:27:42.750000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.073402490679 0.028091180027 0.0126044018723 78.3373624653 2015-03-19 19:27:42.750000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0340303507454 0.0119005551656 0.00498365098749 199.656105837 2015-03-19 19:27:42.750000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00481796938202 0.00145278251641 0.000540815873851 1848.05815149 2015-03-19 19:27:42.750000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0597234858488 0.0230558685787 0.0104661222961 94.5463706336 2015-03-19 19:27:42.750000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.000221145289967 2.64595783766e-05 4.56072236527e-06 219262.511328 2015-03-19 19:27:42.750000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.62954502379 0.333104780704 0.150081284129 0.0983101486967 9.17188981257 2015-03-19 19:27:42.750000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.00040053206843 2.81618684066e-05 1.50853447568e-06 1.87860883503e-07 5323086.92205 2015-03-19 19:27:42.750000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0201386028874 0.00509820047771 0.00060609002778 0.00014596342352 6850.03141515 2015-03-19 19:27:42.750000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0386008087296 0.00915879447875 0.00142240877116 0.000425128389362 2351.23058498 2015-03-19 19:27:42.750000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.282446532431 0.0750305958048 0.0211166908708 0.0042238173206 0.00153887923671 648.823570392 2015-03-19 19:27:42.750000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0425262940335 0.00368302587073 0.000393224526982 3.32280795814e-05 6.06073937631e-06 164995.37056 2015-03-19 19:27:42.750000
|
||||
153 North Carolina 4 West 0 1 1 0.860863804632 0.624220937403 0.226494761334 0.0838334014451 0.0252134542846 0.0124734658112 79.1701800553 2015-03-19 19:27:42.750000
|
||||
108 Harvard 13 West 0 1 1 0.139136195368 0.0508062361329 0.006106649515 0.000866001430203 9.16263276934e-05 2.01462956717e-05 49635.9166965 2015-03-19 19:27:42.750000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0387324458829 0.00918750945058 0.00383473929273 259.773920641 2015-03-19 19:27:42.750000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.00384472028083 0.000405439709942 8.85826273453e-05 11287.8952379 2015-03-19 19:27:42.750000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0409699180584 0.0107091741644 0.00478108768948 208.157427127 2015-03-19 19:27:42.750000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.462853659976 0.164997081771 0.0917632158999 9.89761284185 2015-03-19 19:27:42.750000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.352484175894 0.178584459657 0.0624359693759 15.0164086503 2015-03-19 19:27:42.750000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 6.24258344045e-05 6.1578099196e-06 3.70713928085e-07 2697496.78533 2015-03-19 19:27:42.750000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0186937788967 0.00488048977853 0.000803785473496 1243.11305376 2015-03-19 19:27:42.750000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00466196771323 0.00105098822527 0.000148328232081 6740.8048875 2015-03-19 19:27:42.750000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.148575713265 0.0550820154672 0.0133316609226 74.0094084906 2015-03-19 19:27:42.750000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.0104606616885 0.00221666859077 0.000291737181175 3426.74272368 2015-03-19 19:27:42.750000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.0355483163444 0.0112392629679 0.00228344036821 436.93567545 2015-03-19 19:27:42.750000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000377512065581 2.84059742012e-05 1.27992307848e-06 781295.951989 2015-03-19 19:27:42.750000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0449337806251 0.00855347959917 0.000995194722155 1003.82848003 2015-03-19 19:27:42.750000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.00557912643014 0.000609284146482 4.01522673232e-05 24904.1938201 2015-03-19 19:27:42.750000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0363199285655 0.0123177140754 0.00270961928896 368.055536354 2015-03-19 19:27:42.750000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107836451272 0.00291815655864 0.000501144488217 1994.43250203 2015-03-19 19:27:42.750000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331354063503 0.13822955531 0.0382255129619 25.1605384078 2015-03-19 19:27:42.750000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000164904047573 1.45824347882e-05 7.78603254742e-07 1284350.16847 2015-03-19 19:27:42.750000
|
||||
222 Villanova 1 East 0 1 1 0.984937649869 0.839207965068 0.69963189899 0.463327752792 0.292985172718 0.111629709238 7.95818870109 2015-03-19 19:27:42.750000
|
||||
322 Lafayette 16 East 0 1 1 0.0150623501314 0.00265309663976 0.000553834431249 5.57266354325e-05 5.58497480374e-06 2.19389123786e-07 4558110.0984 2015-03-19 19:27:42.750000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.104244815143 0.055535158829 0.0185649895039 0.00672535634174 0.00119435128691 836.274603341 2015-03-19 19:27:42.750000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0538941231495 0.0248457925013 0.00682373501735 0.00224940429859 0.000355599053499 2811.15596656 2015-03-19 19:27:42.750000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.100795868316 0.0351763498882 0.0144273835055 0.00300319531765 331.978675786 2015-03-19 19:27:42.750000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00670879850249 0.000950462717138 0.00017358482261 1.34527146184e-05 74333.4394323 2015-03-19 19:27:42.750000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.10580171548 0.0396089723612 0.0183251707176 0.00448544326343 221.943406319 2015-03-19 19:27:42.750000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.0061269329503 0.000792597525361 0.000132634404607 9.27920445235e-06 107766.859318 2015-03-19 19:27:42.750000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0218802633395 0.00779412831621 0.00135426465373 737.408107487 2015-03-19 19:27:42.750000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 19:27:42.750000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.0100939915436 0.00356293619985 0.000611250197584 1634.99129121 2015-03-19 19:27:42.750000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0825851099103 0.0405465573799 0.0107371367634 92.1346989456 2015-03-19 19:27:42.750000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000354788070716 5.29214540875e-05 3.25566136563e-06 307156.252458 2015-03-19 19:27:42.750000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.040019511873 0.0203110693066 0.00565625555131 175.795406595 2015-03-19 19:27:42.750000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00817969163936 0.00292599565635 0.000513219776586 1947.48298063 2015-03-19 19:27:42.750000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.271454936765 0.174026840713 0.0678569653766 13.7368806496 2015-03-19 19:27:42.750000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000131120418371 2.40385952606e-05 1.88851125876e-06 529516.62684 2015-03-19 19:27:42.750000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-14.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-14.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.942777262005 0.85797085869 0.738465226072 0.542305706084 0.408239403328 1.44954306676 2015-03-19 22:00:32.350000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000103328698067 1.23846025387e-05 1.1683045158e-06 5.71789128791e-08 4.26994514954e-09 234195044.833 2015-03-19 22:00:32.350000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0571194092966 0.0276447587812 0.0110878406906 0.00302334694269 0.000960202060087 1040.44746358 2015-03-19 22:00:32.350000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0526823072408 0.0255733633971 0.0076265256361 0.00261508102338 381.397329589 2015-03-19 22:00:32.350000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100124902603 0.00355010861866 0.00067955474325 0.000159567359193 6265.94585321 2015-03-19 22:00:32.350000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0464233635513 0.021316773314 0.00595068955696 0.00192699414355 517.942936775 2015-03-19 22:00:32.350000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00525383687359 0.00151733917561 0.000289672579053 6.80406535806e-05 14696.0957417 2015-03-19 22:00:32.350000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0268532242603 0.0101755725306 0.00431311596284 230.850942246 2015-03-19 22:00:32.350000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.073167067044 0.0281005550811 0.0119259123003 82.8510274787 2015-03-19 22:00:32.350000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0339163060889 0.0119067030252 0.00470378370789 211.594809222 2015-03-19 22:00:32.350000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00480041140388 0.00145385677055 0.000508405196392 1965.93504924 2015-03-19 22:00:32.350000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0595308435157 0.0230626543406 0.009907068514 99.938032132 2015-03-19 22:00:32.350000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.0002203281145 2.65473993088e-05 4.20749216318e-06 237670.268589 2015-03-19 22:00:32.350000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631694303948 0.334847068187 0.150925537759 0.0953272837852 9.4901761625 2015-03-19 22:00:32.350000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000379597285518 2.70882746834e-05 1.47025917841e-06 1.69549761656e-07 5897972.49305 2015-03-19 22:00:32.350000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0199745751611 0.00508905127319 0.000608407548366 0.000136778457694 7310.09282015 2015-03-19 22:00:32.350000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0382266567421 0.00913130142388 0.00142557624253 0.000399999104163 2499.00559899 2015-03-19 22:00:32.350000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.263968317469 0.0712978044169 0.0203799439415 0.00414018393068 0.00143741610988 694.69277339 2015-03-19 22:00:32.350000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0362131941834 0.00325171984053 0.000358894119001 3.13358657248e-05 5.43224494839e-06 184084.955162 2015-03-19 22:00:32.350000
|
||||
153 North Carolina 4 West 0 1 1 1 0.699818488348 0.235175342606 0.0809540136424 0.0223789269574 0.00983076909671 100.721441137 2015-03-19 22:00:32.350000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0391208559525 0.00926720622159 0.00365065354513 272.923555779 2015-03-19 22:00:32.350000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.00389166205052 0.00041017666527 8.29865284596e-05 12049.1486032 2015-03-19 22:00:32.350000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0413498883506 0.0107927520587 0.00455877968143 218.356948544 2015-03-19 22:00:32.350000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.464850232785 0.165416984623 0.0878322503692 10.3853396195 2015-03-19 22:00:32.350000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.556422460447 0.352484175894 0.166183795404 0.0581013977169 16.2112899051 2015-03-19 22:00:32.350000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000464954667974 6.24258344045e-05 5.33655708568e-06 3.21766129819e-07 3107846.30687 2015-03-19 22:00:32.350000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0435129495092 0.0186937788967 0.00438142662415 0.000722135538249 1383.78159159 2015-03-19 22:00:32.350000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0158075785174 0.00466196771323 0.000937565092664 0.000132437750246 7549.7172097 2015-03-19 22:00:32.350000
|
||||
254 Utah 5 South 0 1 1 0.822513227646 0.623432018465 0.272896200887 0.148575713265 0.0503078007458 0.0121807767148 81.0965709669 2015-03-19 22:00:32.350000
|
||||
2617 Stephen F. Austin 12 South 0 1 1 0.177486772354 0.0814870568438 0.0250383909688 0.0104606616885 0.00197242747038 0.000259836785053 3847.56978505 2015-03-19 22:00:32.350000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.261964710645 0.0832340344207 0.0355483163444 0.0101810751219 0.00206961657851 482.181286034 2015-03-19 22:00:32.350000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.0331162140467 0.00262343058221 0.000377512065581 2.44309249358e-05 1.10277054023e-06 906805.958942 2015-03-19 22:00:32.350000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0449337806251 0.00757886593866 0.000882715834957 1131.86740806 2015-03-19 22:00:32.350000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.00557912643014 0.000529645529855 3.49556329909e-05 28606.6925072 2015-03-19 22:00:32.350000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0363199285655 0.0111974496272 0.00246440080133 404.778150802 2015-03-19 22:00:32.350000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107836451272 0.00262399505755 0.000450951601022 2216.53287434 2015-03-19 22:00:32.350000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331354063503 0.127086195111 0.0351520898496 27.447810764 2015-03-19 22:00:32.350000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000164904047573 1.25977026268e-05 6.73733820587e-07 1484264.69877 2015-03-19 22:00:32.350000
|
||||
222 Villanova 1 East 0 1 1 1 0.879132052029 0.758186414531 0.534992215913 0.362502799057 0.154598118671 5.46838401785 2015-03-19 22:00:32.350000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.0807933732167 0.0432770465669 0.0145837574444 0.00532391260603 0.000954465562041 1046.70673743 2015-03-19 22:00:32.350000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0400745747546 0.018629956137 0.00517797640793 0.00172556623838 0.000276533369706 3615.20010295 2015-03-19 22:00:32.350000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.0826975024993 0.0289399061652 0.0118990882496 0.00248276798831 401.776258075 2015-03-19 22:00:32.350000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00511975213392 0.000728303606956 0.000133513800159 1.03912367738e-05 96233.935433 2015-03-19 22:00:32.350000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.0874397673552 0.0328205263442 0.0152185184729 0.00373269616627 266.902865772 2015-03-19 22:00:32.350000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.00464956077711 0.000604007554659 0.00010146873164 7.13043049967e-06 140242.986677 2015-03-19 22:00:32.350000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0186884292663 0.00667133958513 0.00116133154541 860.080544958 2015-03-19 22:00:32.350000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 22:00:32.350000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.00844014163071 0.00298464328482 0.000512788022211 1949.12355337 2015-03-19 22:00:32.350000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0713207260222 0.0350759850619 0.00930070625589 106.518716588 2015-03-19 22:00:32.350000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000289201349912 4.32237665717e-05 2.66485913146e-06 375253.357049 2015-03-19 22:00:32.350000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.0346536284615 0.0176174990778 0.00491254230166 202.560588102 2015-03-19 22:00:32.350000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00687640639471 0.00246451791906 0.000432953447841 2308.71714161 2015-03-19 22:00:32.350000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.241778893397 0.155195875904 0.0605656630227 15.5110055779 2015-03-19 22:00:32.350000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000105880041667 1.94413375845e-05 1.52956309027e-06 653780.46633 2015-03-19 22:00:32.350000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-15.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-15.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.942777262005 0.85797085869 0.738465226072 0.542305706084 0.408285378793 1.44926723302 2015-03-19 22:23:00.910000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000103328698067 1.23846025387e-05 1.1683045158e-06 5.71789128791e-08 4.27328833115e-09 234011823.737 2015-03-19 22:23:00.910000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0571194092966 0.0276447587812 0.0110878406906 0.00302334694269 0.000960692246702 1039.91607217 2015-03-19 22:23:00.910000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0526823072408 0.0255733633971 0.0076265256361 0.00261633832063 381.213566233 2015-03-19 22:23:00.910000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100124902603 0.00355010861866 0.00067955474325 0.00015966529052 6262.10199757 2015-03-19 22:23:00.910000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0464233635513 0.021316773314 0.00595068955696 0.00192796361353 517.681988074 2015-03-19 22:23:00.910000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00525383687359 0.00151733917561 0.000289672579053 6.80824054578e-05 14687.0826739 2015-03-19 22:23:00.910000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0268532242603 0.0101755725306 0.00431480547064 230.760158553 2015-03-19 22:23:00.910000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.073167067044 0.0281005550811 0.0119305772266 82.8182412305 2015-03-19 22:23:00.910000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0339163060889 0.0119067030252 0.00470577044565 211.505053434 2015-03-19 22:23:00.910000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00480041140388 0.00145385677055 0.000508645647897 1965.00522217 2015-03-19 22:23:00.910000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0595308435157 0.0230626543406 0.00991089046518 99.8991072511 2015-03-19 22:23:00.910000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.0002203281145 2.65473993088e-05 4.21049114121e-06 237500.984083 2015-03-19 22:23:00.910000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631694303948 0.334847068187 0.150925537759 0.0953464797884 9.48806418674 2015-03-19 22:23:00.910000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000379597285518 2.70882746834e-05 1.47025917841e-06 1.696789617e-07 5893481.55069 2015-03-19 22:23:00.910000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0199745751611 0.00508905127319 0.000608407548366 0.000136864177509 7305.51378764 2015-03-19 22:23:00.910000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0382266567421 0.00913130142388 0.00142557624253 0.000400221337663 2497.61740466 2015-03-19 22:23:00.910000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.263968317469 0.0712978044169 0.0203799439415 0.00414018393068 0.00143810008053 694.361896948 2015-03-19 22:23:00.910000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0362131941834 0.00325171984053 0.000358894119001 3.13358657248e-05 5.43601401413e-06 183957.318982 2015-03-19 22:23:00.910000
|
||||
153 North Carolina 4 West 0 1 1 1 0.699818488348 0.235175342606 0.0809540136424 0.0223789269574 0.00983446320708 100.683231605 2015-03-19 22:23:00.910000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0391208559525 0.00926720622159 0.00365219990921 272.807574848 2015-03-19 22:23:00.910000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.00389166205052 0.00041017666527 8.304097555e-05 12041.2477383 2015-03-19 22:23:00.910000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0413498883506 0.0107927520587 0.00456057245757 218.2707186 2015-03-19 22:23:00.910000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.464850232785 0.165416984623 0.0878574760154 10.3820706598 2015-03-19 22:23:00.910000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.549630743368 0.348786811497 0.164853871566 0.0578128049483 16.2972060583 2015-03-19 22:23:00.910000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000435544990208 5.89913509681e-05 5.09491675516e-06 3.10553426268e-07 3220056.85612 2015-03-19 22:23:00.910000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0424509841076 0.0183062638003 0.0043142711625 0.00071545513543 1396.71168097 2015-03-19 22:23:00.910000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0152286431419 0.00451615206207 0.000914425970938 0.000130141502753 7682.94385226 2015-03-19 22:23:00.910000
|
||||
254 Utah 5 South 0 1 1 1 0.746761860139 0.316546883006 0.167946837589 0.0546961607756 0.0126598322334 77.9899883006 2015-03-19 22:23:00.910000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.227881572836 0.0736209007792 0.0318718774668 0.00929349167043 0.00192818419725 517.622651002 2015-03-19 22:23:00.910000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.025356567025 0.00208630060799 0.000310079232959 2.09120835499e-05 9.85933537187e-07 1014266.15116 2015-03-19 22:23:00.910000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0447176455474 0.00755911066873 0.000882554129201 1132.0749774 2015-03-19 22:23:00.910000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.00552896959042 0.000526583416126 3.48736161541e-05 28673.9729533 2015-03-19 22:23:00.910000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362129081399 0.0111805701871 0.00246475404512 404.719995461 2015-03-19 22:23:00.910000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107401967228 0.00261819055096 0.000450873788807 2216.9155782 2015-03-19 22:23:00.910000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.330840181719 0.127010835335 0.035171002334 27.4325135378 2015-03-19 22:23:00.910000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163085281854 1.2503603045e-05 6.71249379937e-07 1489758.2905 2015-03-19 22:23:00.910000
|
||||
222 Villanova 1 East 0 1 1 1 0.879132052029 0.758186414531 0.534992215913 0.362544480809 0.154655975132 5.46596420956 2015-03-19 22:23:00.910000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
152 North Carolina State 8 East 0 1 1 0.589299423188 0.0807933732167 0.0432770465669 0.0145837574444 0.00532002825568 0.000954599161175 1046.56010761 2015-03-19 22:23:00.910000
|
||||
99 LSU 9 East 0 1 1 0.410700576812 0.0400745747546 0.018629956137 0.00517797640793 0.00172398420599 0.000276548004467 3615.00873573 2015-03-19 22:23:00.910000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.0826975024993 0.0289399061652 0.0118930632157 0.00248335268584 401.681425681 2015-03-19 22:23:00.910000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00511975213392 0.000728303606956 0.000133187963754 1.03820994595e-05 96318.6320649 2015-03-19 22:23:00.910000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.0874397673552 0.0328205263442 0.0152138490962 0.00373388172057 266.81780325 2015-03-19 22:23:00.910000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.00464956077711 0.000604007554659 0.000101194689437 7.12289399601e-06 140391.374302 2015-03-19 22:23:00.910000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0186884292663 0.00666617382833 0.00116146622736 859.980695299 2015-03-19 22:23:00.910000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 22:23:00.910000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.00844014163071 0.00298227521944 0.000512841259731 1948.92111306 2015-03-19 22:23:00.910000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0713207260222 0.0350682866964 0.00930383962005 106.482506238 2015-03-19 22:23:00.910000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000289201349912 4.30913966648e-05 2.66136135594e-06 375746.546558 2015-03-19 22:23:00.910000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.0346536284615 0.0176144430568 0.00491433755466 202.486225534 2015-03-19 22:23:00.910000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00687640639471 0.00246262935538 0.000433009490954 2308.41820189 2015-03-19 22:23:00.910000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.241778893397 0.155207896321 0.0605879625652 15.5049286634 2015-03-19 22:23:00.910000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000105880041667 1.93939831788e-05 1.5282236697e-06 654353.476917 2015-03-19 22:23:00.910000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-16.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-16.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.942777262005 0.85797085869 0.738465226072 0.542305706084 0.408137010044 1.45015760735 2015-03-19 23:28:42.380000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000103328698067 1.23846025387e-05 1.1683045158e-06 5.71789128791e-08 4.27304095355e-09 234025371.298 2015-03-19 23:28:42.370000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0571194092966 0.0276447587812 0.0110878406906 0.00302334694269 0.000960203526539 1040.44587305 2015-03-19 23:28:42.370000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0526823072408 0.0255733633971 0.0076265256361 0.00261498928583 381.410744632 2015-03-19 23:28:42.370000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100124902603 0.00355010861866 0.00067955474325 0.000159591895583 6264.9823442 2015-03-19 23:28:42.370000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0464233635513 0.021316773314 0.00595068955696 0.00192697899792 517.94701555 2015-03-19 23:28:42.370000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00525383687359 0.00151733917561 0.000289672579053 6.80511046042e-05 14693.8386189 2015-03-19 23:28:42.370000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0268532242603 0.0101755725306 0.00431256044221 230.880808026 2015-03-19 23:28:42.370000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.073167067044 0.0281005550811 0.0119243701634 82.8618716371 2015-03-19 23:28:42.370000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0339163060889 0.0119067030252 0.00470331728801 211.615891883 2015-03-19 23:28:42.370000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00480041140388 0.00145385677055 0.000508382690228 1966.0221257 2015-03-19 23:28:42.370000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0595308435157 0.0230626543406 0.00990573876136 99.9515821173 2015-03-19 23:28:42.370000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.0002203281145 2.65473993088e-05 4.20900017396e-06 237585.115151 2015-03-19 23:28:42.370000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631694303948 0.334847068187 0.150925537759 0.0953036540684 9.49277711097 2015-03-19 23:28:42.370000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000379597285518 2.70882746834e-05 1.47025917841e-06 1.6963792023e-07 5894907.39455 2015-03-19 23:28:42.370000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0199745751611 0.00508905127319 0.000608407548366 0.000136802575003 7308.80392715 2015-03-19 23:28:42.370000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0382266567421 0.00913130142388 0.00142557624253 0.000400024211866 2498.848685 2015-03-19 23:28:42.370000
|
||||
8 Arkansas 5 West 0 1 1 0.760941357071 0.263968317469 0.0712978044169 0.0203799439415 0.00414018393068 0.001437357303 694.721236405 2015-03-19 23:28:42.370000
|
||||
2747 Wofford 12 West 0 1 1 0.239058642929 0.0362131941834 0.00325171984053 0.000358894119001 3.13358657248e-05 5.43393900271e-06 184027.565558 2015-03-19 23:28:42.370000
|
||||
153 North Carolina 4 West 0 1 1 1 0.699818488348 0.235175342606 0.0809540136424 0.0223789269574 0.00982936188337 100.736004012 2015-03-19 23:28:42.370000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0391208559525 0.00926720622159 0.00365029604573 272.950383057 2015-03-19 23:28:42.370000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.00389166205052 0.00041017666527 8.30057181322e-05 12046.3627902 2015-03-19 23:28:42.370000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0413498883506 0.0107927520587 0.00455819903007 218.384891577 2015-03-19 23:28:42.370000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.464850232785 0.165416984623 0.0878138836536 10.3877209206 2015-03-19 23:28:42.370000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.549630743368 0.348786811497 0.164835823243 0.057804079424 16.2998170711 2015-03-19 23:28:42.370000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000435544990208 5.89913509681e-05 5.10635023202e-06 3.1120364842e-07 3213328.93709 2015-03-19 23:28:42.370000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0424509841076 0.0183062638003 0.00431694125292 0.000715834679742 1395.97059712 2015-03-19 23:28:42.370000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0152286431419 0.00451615206207 0.000915183228639 0.000130236548873 7677.33614032 2015-03-19 23:28:42.370000
|
||||
254 Utah 5 South 0 1 1 1 0.746761860139 0.316546883006 0.167946837589 0.0547086220275 0.0126618713547 77.9772674187 2015-03-19 23:28:42.370000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.227881572836 0.0736209007792 0.0318718774668 0.00929676718003 0.00192872181069 517.478089716 2015-03-19 23:28:42.370000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.025356567025 0.00208630060799 0.000310079232959 2.09689370254e-05 9.88446779537e-07 1011687.25748 2015-03-19 23:28:42.370000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0447176455474 0.0075673932529 0.000883421530847 1130.9624495 2015-03-19 23:28:42.370000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.00552896959042 0.000527670014576 3.49404763854e-05 28619.102055 2015-03-19 23:28:42.370000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362129081399 0.0111837763254 0.00246528903215 404.631951045 2015-03-19 23:28:42.370000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107401967228 0.00261969446226 0.000451094152799 2215.83210433 2015-03-19 23:28:42.370000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.330840181719 0.127018699402 0.0351712354405 27.4323250939 2015-03-19 23:28:42.370000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163085281854 1.25344811505e-05 6.72799650586e-07 1486325.57453 2015-03-19 23:28:42.370000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.75533228829 0.533681699659 0.362177580128 0.154873035736 5.45690190837 2015-03-19 23:28:42.370000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0640793388501 0.0202988560532 0.00697750898482 0.00115480563816 864.946586122 2015-03-19 23:28:42.370000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.0830106828332 0.029073201628 0.0119566510131 0.00249920965888 399.126494568 2015-03-19 23:28:42.370000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00515125586807 0.000734838703347 0.000134731703105 1.05364047774e-05 94908.0340708 2015-03-19 23:28:42.370000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.0877477613573 0.0329594455359 0.0152875167847 0.00375524598032 265.294140315 2015-03-19 23:28:42.370000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.00467867280178 0.000609634652396 0.000102425455992 7.23467858154e-06 138222.141323 2015-03-19 23:28:42.370000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0187284163474 0.00668143357023 0.00116436119199 857.840029093 2015-03-19 23:28:42.370000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-19 23:28:42.370000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.00846543778154 0.0029919321812 0.000514669872307 1941.99307927 2015-03-19 23:28:42.370000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0714462248373 0.0351327549634 0.00932201877634 106.272901288 2015-03-19 23:28:42.370000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000290433405083 4.33012806923e-05 2.67631388921e-06 373647.249569 2015-03-19 23:28:42.370000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.0347116298206 0.0176452520228 0.00492348097767 202.10833017 2015-03-19 23:28:42.370000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00689541054533 0.0024699763479 0.000434430712277 2300.86303993 2015-03-19 23:28:42.380000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.241998383485 0.155350255561 0.0606444637882 15.4895513545 2015-03-19 23:28:42.380000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000106387545514 1.94998459835e-05 1.53783112352e-06 650265.4595 2015-03-19 23:28:42.380000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-17.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-17.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 0.999000987185 0.942777262005 0.85797085869 0.738465226072 0.542355111877 0.408170510089 1.44995651397 2015-03-20 00:11:23.430000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 00:11:23.420000
|
||||
2261 Hampton 16b Midwest 1 1 1 0.000999012815292 0.000103328698067 1.23846025387e-05 1.1683045158e-06 5.73662263762e-08 4.28619251591e-09 233307298.261 2015-03-20 00:11:23.420000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0571194092966 0.0276447587812 0.0110878406906 0.00302636437077 0.000961084006874 1039.49177059 2015-03-20 00:11:23.430000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0526823072408 0.0255733633971 0.00763337203903 0.00261714462018 381.09581247 2015-03-20 00:11:23.430000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0100124902603 0.00355010861866 0.000680518542062 0.000159800658569 6256.79648818 2015-03-20 00:11:23.430000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0464233635513 0.021316773314 0.00595647042365 0.00192869857777 517.484335255 2015-03-20 00:11:23.430000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00525383687359 0.00151733917561 0.000290084371024 6.81403623029e-05 14674.5897122 2015-03-20 00:11:23.430000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0268532242603 0.0101821214922 0.00431510352483 230.744150342 2015-03-20 00:11:23.430000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.073167067044 0.0281182586809 0.0119312624773 82.8134272801 2015-03-20 00:11:23.430000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0339163060889 0.0119153026401 0.00470643266501 211.475152876 2015-03-20 00:11:23.430000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00480041140388 0.00145513717004 0.000508793737129 1964.43299774 2015-03-20 00:11:23.430000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0595308435157 0.0230769826639 0.00991138036622 99.8941199964 2015-03-20 00:11:23.430000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.0002203281145 2.66008872601e-05 4.21687975494e-06 237141.166273 2015-03-20 00:11:23.430000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.150947882927 0.0953500910287 9.48766696719 2015-03-20 00:11:23.430000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.44581888181e-06 1.68430766443e-07 5937156.56996 2015-03-20 00:11:23.430000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000607555887385 0.000137040191309 7296.12933446 2015-03-20 00:11:23.430000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00142243215594 0.000400326506034 2496.96100165 2015-03-20 00:11:23.430000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00419058838685 0.00136782151511 730.089538331 2015-03-20 00:11:23.430000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0220535131852 0.00975227550192 101.540171245 2015-03-20 00:11:23.430000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.00929067958679 0.00365967850307 272.248046013 2015-03-20 00:11:23.430000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000411704461861 8.33403562515e-05 11997.988785 2015-03-20 00:11:23.430000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0108168541179 0.00456838553589 217.895711 2015-03-20 00:11:23.430000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.165540960949 0.0878743477028 10.3798853265 2015-03-20 00:11:23.430000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.549630743368 0.348786811497 0.164835823243 0.0577985105161 16.3014839149 2015-03-20 00:11:23.430000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000435544990208 5.89913509681e-05 5.10635023202e-06 3.11256241674e-07 3212785.97777 2015-03-20 00:11:23.430000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0424509841076 0.0183062638003 0.00431694125292 0.000715806389758 1396.02580797 2015-03-20 00:11:23.430000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0152286431419 0.00451615206207 0.000915183228639 0.000130234347289 7677.46594093 2015-03-20 00:11:23.430000
|
||||
254 Utah 5 South 0 1 1 1 0.746761860139 0.316546883006 0.167946837589 0.0547086220275 0.0126609062472 77.9832876477 2015-03-20 00:11:23.430000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.227881572836 0.0736209007792 0.0318718774668 0.00929676718003 0.00192859425873 517.51238044 2015-03-20 00:11:23.430000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.025356567025 0.00208630060799 0.000310079232959 2.09689370254e-05 9.88687771678e-07 1011440.65898 2015-03-20 00:11:23.430000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0447176455474 0.0075673932529 0.000883437038896 1130.94257878 2015-03-20 00:11:23.430000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.00552896959042 0.000527670014576 3.49455976193e-05 28614.9078146 2015-03-20 00:11:23.430000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362129081399 0.0111837763254 0.00246511161337 404.661145149 2015-03-20 00:11:23.430000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107401967228 0.00261969446226 0.000451074056728 2215.93086775 2015-03-20 00:11:23.430000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.330840181719 0.127018699402 0.0351681226392 27.4348416962 2015-03-20 00:11:23.430000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163085281854 1.25344811505e-05 6.72937566569e-07 1486020.95758 2015-03-20 00:11:23.430000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.75533228829 0.533681699659 0.362177580128 0.154858277725 5.45751725183 2015-03-20 00:11:23.430000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0640793388501 0.0202988560532 0.00697750898482 0.00115476030027 864.980584686 2015-03-20 00:11:23.430000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.0830106828332 0.029073201628 0.0119566510131 0.00249904249681 399.153259209 2015-03-20 00:11:23.430000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00515125586807 0.000734838703347 0.000134731703105 1.05375031378e-05 94898.1413739 2015-03-20 00:11:23.430000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.0877477613573 0.0329594455359 0.0152875167847 0.00375494220881 265.315683276 2015-03-20 00:11:23.430000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.00467867280178 0.000609634652396 0.000102425455992 7.23561704468e-06 138204.213712 2015-03-20 00:11:23.430000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0187284163474 0.00668143357023 0.00116430751413 857.879624037 2015-03-20 00:11:23.430000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 00:11:23.430000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.00846543778154 0.0029919321812 0.000514647011946 1942.07938604 2015-03-20 00:11:23.430000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0714462248373 0.0351327549634 0.00932121643411 106.282135016 2015-03-20 00:11:23.430000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000290433405083 4.33012806923e-05 2.67675585619e-06 373585.555414 2015-03-20 00:11:23.430000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.0347116298206 0.0176452520228 0.00492304323776 202.126389858 2015-03-20 00:11:23.430000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00689541054533 0.0024699763479 0.000434410171887 2300.97187984 2015-03-20 00:11:23.430000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.241998383485 0.155350255561 0.0606386019257 15.4911453801 2015-03-20 00:11:23.430000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000106387545514 1.94998459835e-05 1.53798828875e-06 650199.009529 2015-03-20 00:11:23.430000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-18.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-18.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.840455479276 0.710091829808 0.505505605981 0.369425980757 1.70690219987 2015-03-20 00:31:40.500000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0312989365882 0.012581555056 0.00344354512786 0.00109636015489 911.109032365 2015-03-20 00:31:40.500000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0588691189949 0.0285741189459 0.00852804104219 0.00292356198179 341.048503239 2015-03-20 00:31:40.500000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0113507905238 0.00402596446974 0.000772074171013 0.000181373459493 5512.48583634 2015-03-20 00:31:40.500000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0520310914528 0.023890951588 0.00667546413935 0.00216141811664 461.659210775 2015-03-20 00:31:40.500000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00599458316423 0.00173252686077 0.000331506085794 7.79314351943e-05 12830.7924276 2015-03-20 00:31:40.500000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0298358911905 0.0113084305253 0.00479060560514 207.741875751 2015-03-20 00:31:40.500000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.0805739717057 0.030945922513 0.0131236760636 75.1981624014 2015-03-20 00:31:40.500000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0374977051692 0.0131660467989 0.00519773955776 191.3913249 2015-03-20 00:31:40.500000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00535617552464 0.00162308068003 0.000567346897925 1761.59005497 2015-03-20 00:31:40.500000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0655895804761 0.0254103227654 0.0109074322365 90.6806062437 2015-03-20 00:31:40.500000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.00024972920515 3.01707019608e-05 4.7857251172e-06 208953.750954 2015-03-20 00:31:40.500000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.160854862645 0.101543357148 8.84801003317 2015-03-20 00:31:40.500000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.61543758617e-06 1.88258815923e-07 5311835.23513 2015-03-20 00:31:40.500000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000672836018243 0.00015172780427 6589.74982869 2015-03-20 00:31:40.500000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00156782778558 0.000441053551094 2266.29837572 2015-03-20 00:31:40.500000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00460027422038 0.00150071016389 665.351187633 2015-03-20 00:31:40.500000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0239527983264 0.0105846722088 93.4762369848 2015-03-20 00:31:40.500000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.010140254966 0.0039916664456 249.521934542 2015-03-20 00:31:40.500000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000456820566222 9.24597935886e-05 10814.5119235 2015-03-20 00:31:40.500000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0117725747646 0.00496855453063 200.26577938 2015-03-20 00:31:40.500000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.178239924738 0.0945488188279 9.57654672366 2015-03-20 00:31:40.500000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.549630743368 0.348786811497 0.164835823243 0.0612027239254 15.339142049 2015-03-20 00:31:40.500000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000435544990208 5.89913509681e-05 5.10635023202e-06 3.39135090521e-07 2948676.46792 2015-03-20 00:31:40.500000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0424509841076 0.0183062638003 0.00431694125292 0.000770349930779 1297.11136478 2015-03-20 00:31:40.500000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0152286431419 0.00451615206207 0.000915183228639 0.000140496357675 7116.62223981 2015-03-20 00:31:40.500000
|
||||
254 Utah 5 South 0 1 1 1 0.746761860139 0.316546883006 0.167946837589 0.0547086220275 0.0135417639347 72.8456234225 2015-03-20 00:31:40.500000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
46 Georgetown 4 South 0 1 1 0.773918101429 0.227881572836 0.0736209007792 0.0318718774668 0.00929676718003 0.00206727474589 482.728639355 2015-03-20 00:31:40.500000
|
||||
331 Eastern Washington 13 South 0 1 1 0.226081898571 0.025356567025 0.00208630060799 0.000310079232959 2.09689370254e-05 1.07956582769e-06 926297.3084 2015-03-20 00:31:40.500000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0447176455474 0.0075673932529 0.000955717037887 1045.33480451 2015-03-20 00:31:40.500000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.00552896959042 0.000527670014576 3.80464614504e-05 26282.653246 2015-03-20 00:31:40.500000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362129081399 0.0111837763254 0.00263923246787 377.898036522 2015-03-20 00:31:40.500000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107401967228 0.00261969446226 0.000485138618222 2060.26653793 2015-03-20 00:31:40.500000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.330840181719 0.127018699402 0.0374663792219 25.6905962297 2015-03-20 00:31:40.500000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163085281854 1.25344811505e-05 7.34021957052e-07 1362356.06629 2015-03-20 00:31:40.500000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.75533228829 0.533681699659 0.362177580128 0.162988502323 5.1354021035 2015-03-20 00:31:40.500000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0640793388501 0.0202988560532 0.00697750898482 0.00124279077454 803.640668799 2015-03-20 00:31:40.500000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.0830106828332 0.029073201628 0.0119566510131 0.00267835607827 372.363350794 2015-03-20 00:31:40.500000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00515125586807 0.000734838703347 0.000134731703105 1.14535873697e-05 87307.8900204 2015-03-20 00:31:40.500000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.0877477613573 0.0329594455359 0.0152875167847 0.00401113547918 248.305964655 2015-03-20 00:31:40.500000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.00467867280178 0.000609634652396 0.000102425455992 7.87275911508e-06 127019.271468 2015-03-20 00:31:40.500000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0187284163474 0.00668143357023 0.00125197920736 797.735309759 2015-03-20 00:31:40.500000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 00:31:40.500000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.00846543778154 0.0029919321812 0.00055352202548 1805.61284279 2015-03-20 00:31:40.500000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0714462248373 0.0351327549634 0.00994017162845 99.6018846936 2015-03-20 00:31:40.500000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000290433405083 4.33012806923e-05 2.91613864691e-06 342918.223357 2015-03-20 00:31:40.500000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.0347116298206 0.0176452520228 0.00524382050558 189.700654024 2015-03-20 00:31:40.500000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00689541054533 0.0024699763479 0.000467047060408 2140.11185954 2015-03-20 00:31:40.500000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.241998383485 0.155350255561 0.064008064737 14.6230313182 2015-03-20 00:31:40.500000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000106387545514 1.94998459835e-05 1.67154715551e-06 598247.153934 2015-03-20 00:31:40.500000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-19.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-19.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.840455479276 0.710091829808 0.505505605981 0.369442408241 1.7067818358 2015-03-20 09:07:55.110000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0312989365882 0.012581555056 0.00344354512786 0.00109649762717 910.994677616 2015-03-20 09:07:55.110000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0588691189949 0.0285741189459 0.00852804104219 0.00292391018871 341.007768864 2015-03-20 09:07:55.110000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0113507905238 0.00402596446974 0.000772074171013 0.000181400636345 5511.65982384 2015-03-20 09:07:55.110000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0520310914528 0.023890951588 0.00667546413935 0.00216168607006 461.601861506 2015-03-20 09:07:55.110000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00599458316423 0.00173252686077 0.000331506085794 7.79431081489e-05 12828.8707063 2015-03-20 09:07:55.110000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.16612488808 0.0298358911905 0.0113084305253 0.00479108611476 207.720940523 2015-03-20 09:07:55.110000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.338357735683 0.0805739717057 0.030945922513 0.0131249911129 75.1905277803 2015-03-20 09:07:55.110000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.360058896161 0.177236956325 0.0374977051692 0.0131660467989 0.00519829419035 191.370797685 2015-03-20 09:07:55.110000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0902798966498 0.0349268767058 0.00535617552464 0.00162308068003 0.000567413519917 1761.38310315 2015-03-20 09:07:55.110000
|
||||
2305 Kansas 2 Midwest 0 1 1 0.889897491993 0.527615529487 0.279368221769 0.0655895804761 0.0254103227654 0.0109085130455 90.6715225831 2015-03-20 09:07:55.110000
|
||||
166 New Mexico State 15 Midwest 0 1 1 0.110102508007 0.0220456777019 0.00398532143721 0.00024972920515 3.01707019608e-05 4.78657849205e-06 208916.497469 2015-03-20 09:07:55.110000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.160854862645 0.101549535996 8.84741082456 2015-03-20 09:07:55.110000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.61543758617e-06 1.88296146247e-07 5310782.1463 2015-03-20 09:07:55.110000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000672836018243 0.000151751013211 6588.74183327 2015-03-20 09:07:55.110000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00156782778558 0.00044111336134 2265.99095435 2015-03-20 09:07:55.110000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00460027422038 0.00150089525696 665.269012019 2015-03-20 09:07:55.110000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0239527983264 0.0105856925497 93.4671305447 2015-03-20 09:07:55.110000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.010140254966 0.00399209341646 249.495140188 2015-03-20 09:07:55.110000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000456820566222 9.24746838373e-05 10812.7704127 2015-03-20 09:07:55.110000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0117725747646 0.00496905460015 200.245524646 2015-03-20 09:07:55.110000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.178239924738 0.0945562713088 9.57571312996 2015-03-20 09:07:55.110000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.16425693819 0.0610112286692 15.3904255301 2015-03-20 09:07:55.110000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 4.92971031998e-06 3.31356696786e-07 3017894.8497 2015-03-20 09:07:55.110000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00428176464996 0.000765891939962 1304.66721991 2015-03-20 09:07:55.110000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000901471638494 0.000139016194113 7192.40654075 2015-03-20 09:07:55.110000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0529039657364 0.0132037884107 74.7358395103 2015-03-20 09:07:55.110000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0114932189477 0.00252185674509 395.533229711 2015-03-20 09:07:55.110000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00757982517788 0.000956989718561 1043.94330566 2015-03-20 09:07:55.110000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000528544572582 3.81108585496e-05 26238.2409423 2015-03-20 09:07:55.110000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.0112001077597 0.00264223359049 377.467673563 2015-03-20 09:07:55.110000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00262389777305 0.000485767478151 2057.59808443 2015-03-20 09:07:55.110000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.127162450224 0.0374971449544 25.6686970759 2015-03-20 09:07:55.110000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.25528425384e-05 7.35297570018e-07 1359992.61453 2015-03-20 09:07:55.110000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.75533228829 0.533681699659 0.362220724985 0.162994707959 5.13516851264 2015-03-20 09:07:55.110000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0640793388501 0.0202988560532 0.00697869675646 0.00124280569549 803.631008397 2015-03-20 09:07:55.110000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.0830106828332 0.029073201628 0.0119586881757 0.00267842311726 372.35400578 2015-03-20 09:07:55.110000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00515125586807 0.000734838703347 0.000134745294637 1.14528698112e-05 87313.360198 2015-03-20 09:07:55.110000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.0877477613573 0.0329594455359 0.0152900441994 0.00401126115941 248.298153438 2015-03-20 09:07:55.110000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.00467867280178 0.000609634652396 0.00010243395122 7.87215050985e-06 127029.091555 2015-03-20 09:07:55.110000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0187284163474 0.00668257608199 0.00125199782658 797.72343128 2015-03-20 09:07:55.110000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 09:07:55.110000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.00846543778154 0.00299244332327 0.000553529870601 1805.58723786 2015-03-20 09:07:55.110000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0714462248373 0.0351384224392 0.00994051615755 99.5983979253 2015-03-20 09:07:55.110000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000290433405083 4.33036682942e-05 2.91585424541e-06 342951.670414 2015-03-20 09:07:55.110000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.0347116298206 0.0176480500372 0.00524400139888 189.694075752 2015-03-20 09:07:55.110000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00689541054533 0.00247039885941 0.000467054099514 2140.07959022 2015-03-20 09:07:55.110000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.241998383485 0.155370303194 0.0640106942641 14.6223895319 2015-03-20 09:07:55.110000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000106387545514 1.95018119031e-05 1.67144710564e-06 598282.964012 2015-03-20 09:07:55.110000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-20.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-20.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.840455479276 0.705703774462 0.502431152844 0.367229489515 1.7230928576 2015-03-20 14:34:02.140000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0312989365882 0.0123067765301 0.00337149374105 0.0010744848122 929.678580701 2015-03-20 14:34:02.140000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0588691189949 0.0280459671811 0.00837707167758 0.0028742638914 346.915166381 2015-03-20 14:34:02.140000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0113507905238 0.00392955682188 0.0007544774151 0.000177459851947 5634.07739372 2015-03-20 14:34:02.140000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0520310914528 0.0234251192773 0.00655090149754 0.00212302822241 470.025297472 2015-03-20 14:34:02.140000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00599458316423 0.00168534709366 0.000322896158395 7.60093919357e-05 13155.2689101 2015-03-20 14:34:02.140000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.15809376854 0.0284960450638 0.0108306606542 0.00460045878329 216.36962488 2015-03-20 14:34:02.140000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.325307889739 0.0776626393612 0.0298916594125 0.012703128086 77.7207680843 2015-03-20 14:34:02.140000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.320553931134 0.159048458789 0.0340562404565 0.0120814902821 0.00481578665559 206.650394736 2015-03-20 14:34:02.140000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0740726577052 0.0290926658089 0.0045554755674 0.00140485779839 0.000499124975744 2002.5062331 2015-03-20 14:34:02.140000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.605373411161 0.328457217123 0.0801330581853 0.0320536318329 0.0141746208127 69.5486244194 2015-03-20 14:34:02.140000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.160805976497 0.101513052871 8.85094991946 2015-03-20 14:34:02.140000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.59991902644e-06 1.86599475694e-07 5359070.86385 2015-03-20 14:34:02.140000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000669172388016 0.000150971221991 6622.77893492 2015-03-20 14:34:02.140000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00156132305217 0.000439374339634 2274.96359139 2015-03-20 14:34:02.140000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00458512298771 0.00149615671971 667.379179017 2015-03-20 14:34:02.140000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0239113476544 0.0105675654363 93.6291750954 2015-03-20 14:34:02.140000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.0101164445509 0.0039830039262 250.066787412 2015-03-20 14:34:02.140000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000454033466083 9.19434111197e-05 10875.2551642 2015-03-20 14:34:02.140000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0117493490004 0.00495944558978 200.63544128 2015-03-20 14:34:02.140000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.17807533717 0.0944659075845 9.58582959261 2015-03-20 14:34:02.140000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.16425693819 0.0610623731673 15.3766972709 2015-03-20 14:34:02.140000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 4.92971031998e-06 3.3122860425e-07 3019061.92865 2015-03-20 14:34:02.140000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00428176464996 0.000766320465525 1303.93709223 2015-03-20 14:34:02.140000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000901471638494 0.000139078994542 7189.15839375 2015-03-20 14:34:02.140000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0529039657364 0.0132136060896 74.6795679561 2015-03-20 14:34:02.140000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0114932189477 0.00252357799071 395.262768054 2015-03-20 14:34:02.140000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00757982517788 0.000957261685572 1043.64642748 2015-03-20 14:34:02.140000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000528544572582 3.8099334162e-05 26246.1778574 2015-03-20 14:34:02.140000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.0112001077597 0.00264413208979 377.195931989 2015-03-20 14:34:02.140000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00262389777305 0.000486050363499 2056.39996325 2015-03-20 14:34:02.140000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.127162450224 0.0375272034787 25.6473359937 2015-03-20 14:34:02.140000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.25528425384e-05 7.34887560762e-07 1360751.38362 2015-03-20 14:34:02.140000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.75533228829 0.533681699659 0.362220724985 0.163129041587 5.1301163194 2015-03-20 14:34:02.140000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0640793388501 0.0202988560532 0.00697869675646 0.00124349734536 803.183461856 2015-03-20 14:34:02.140000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.0830106828332 0.029073201628 0.0119586881757 0.00268027967209 372.095393893 2015-03-20 14:34:02.140000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00515125586807 0.000734838703347 0.000134745294637 1.14515653177e-05 87323.3065256 2015-03-20 14:34:02.140000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.0877477613573 0.0329594455359 0.0152900441994 0.00401432370485 248.107962766 2015-03-20 14:34:02.140000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.00467867280178 0.000609634652396 0.00010243395122 7.87035670809e-06 127058.044093 2015-03-20 14:34:02.140000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0680339170534 0.0187284163474 0.00668257608199 0.00125273659089 797.252407786 2015-03-20 14:34:02.140000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 14:34:02.140000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0435378919942 0.00846543778154 0.00299244332327 0.000553851912659 1804.53678184 2015-03-20 14:34:02.140000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.222516267676 0.0714462248373 0.0351384224392 0.00994836425677 99.5190375211 2015-03-20 14:34:02.140000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00258330516097 0.000290433405083 4.33036682942e-05 2.91473331263e-06 343083.561344 2015-03-20 14:34:02.140000
|
||||
127 Michigan State 7 East 0 1 1 0.62245189415 0.181358984927 0.104379997206 0.0347116298206 0.0176480500372 0.00524821592085 189.540940975 2015-03-20 14:34:02.140000
|
||||
61 Georgia 10 East 0 1 1 0.37754810585 0.0784394768118 0.0322334566476 0.00689541054533 0.00247039885941 0.000467332405818 2138.80453217 2015-03-20 14:34:02.140000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.733605891718 0.525488797154 0.241998383485 0.155370303194 0.0640642162031 14.609337931 2015-03-20 14:34:02.140000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.0065956465433 0.00122636710818 0.000106387545514 1.95018119031e-05 1.67127211441e-06 598345.607581 2015-03-20 14:34:02.140000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-21.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-21.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.840455479276 0.705703774462 0.502431152844 0.367262365658 1.72284909511 2015-03-20 15:13:06.910000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0312989365882 0.0123067765301 0.00337149374105 0.00107448065693 929.682179849 2015-03-20 15:13:06.910000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0588691189949 0.0280459671811 0.00837707167758 0.00287431207287 346.909334354 2015-03-20 15:13:06.910000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0113507905238 0.00392955682188 0.0007544774151 0.000177440608659 5634.68851324 2015-03-20 15:13:06.910000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0520310914528 0.0234251192773 0.00655090149754 0.00212303032198 470.02483165 2015-03-20 15:13:06.910000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00599458316423 0.00168534709366 0.000322896158395 7.60011737877e-05 13156.6915219 2015-03-20 15:13:06.910000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.15809376854 0.0284960450638 0.0108306606542 0.004600756507 216.355558478 2015-03-20 15:13:06.910000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.325307889739 0.0776626393612 0.0298916594125 0.0127039513198 77.7156668683 2015-03-20 15:13:06.910000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.320553931134 0.159048458789 0.0340562404565 0.0120814902821 0.00481603873691 206.63952589 2015-03-20 15:13:06.910000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0740726577052 0.0290926658089 0.0045554755674 0.00140485779839 0.000499137858209 2002.45452374 2015-03-20 15:13:06.910000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.605373411161 0.328457217123 0.0801330581853 0.0320536318329 0.0141756367329 69.5435684364 2015-03-20 15:13:06.910000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.160805976497 0.101523141188 8.84997103415 2015-03-20 15:13:06.910000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.59991902644e-06 1.86514902809e-07 5361500.86897 2015-03-20 15:13:06.910000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000669172388016 0.000150952337195 6623.60759855 2015-03-20 15:13:06.910000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00156132305217 0.000439355446893 2275.0614602 2015-03-20 15:13:06.910000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00458512298771 0.00149616112283 667.377212014 2015-03-20 15:13:06.910000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0239113476544 0.0105683217807 93.6224027568 2015-03-20 15:13:06.910000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.0101164445509 0.00398320207106 250.054298065 2015-03-20 15:13:06.910000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000454033466083 9.19277180028e-05 10877.1118658 2015-03-20 15:13:06.910000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0117493490004 0.00495976085645 200.622624345 2015-03-20 15:13:06.910000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.17807533717 0.0944747802063 9.58483542186 2015-03-20 15:13:06.910000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.164162250491 0.0610294990455 15.385518735 2015-03-20 15:13:06.910000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 4.90671493883e-06 3.29948062258e-07 3030779.03597 2015-03-20 15:13:06.910000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00427359008823 0.000765089472219 1306.0366752 2015-03-20 15:13:06.910000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000899427913626 0.00013881622645 7202.76879257 2015-03-20 15:13:06.910000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0528401130585 0.0131996828377 74.7593960624 2015-03-20 15:13:06.910000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0114763227531 0.00252040894254 395.761010931 2015-03-20 15:13:06.910000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00755906451844 0.000955079146473 1046.03364501 2015-03-20 15:13:06.910000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000526222843839 3.79611493667e-05 26341.7218796 2015-03-20 15:13:06.910000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.0111852320164 0.00264111443983 377.628046146 2015-03-20 15:13:06.910000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00261907737997 0.00048529875196 2059.58638305 2015-03-20 15:13:06.910000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.127046052492 0.0374964629411 25.6691821458 2015-03-20 15:13:06.910000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.24890114715e-05 7.3179061063e-07 1366510.11052 2015-03-20 15:13:06.910000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.75533228829 0.532178271792 0.361266321765 0.162747451994 5.14448943899 2015-03-20 15:13:06.910000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0640793388501 0.020069070349 0.00690795642159 0.00123285556912 810.125021492 2015-03-20 15:13:06.910000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2460 Northern Iowa 5 East 0 1 1 0.752684555768 0.424877553315 0.0830106828332 0.028777197057 0.0118485866373 0.00265919830629 375.053187772 2015-03-20 15:13:06.910000
|
||||
2751 Wyoming 12 East 0 1 1 0.247315444232 0.0824867912939 0.00515125586807 0.00071954216758 0.000132256484714 1.12732953986e-05 88704.2068311 2015-03-20 15:13:06.910000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.409111523873 0.0877477613573 0.0326497052808 0.0151591077371 0.00398467925016 249.961228551 2015-03-20 15:13:06.910000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0835241315181 0.00467867280178 0.000596264076382 0.000100441723844 7.74131016685e-06 129176.100316 2015-03-20 15:13:06.910000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.066149943057 0.0182763612635 0.00654364224697 0.00123232540552 810.473978804 2015-03-20 15:13:06.910000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0418192293118 0.00817491318573 0.00290240929969 0.000540337338825 1849.69571941 2015-03-20 15:13:06.910000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.217450887175 0.0700190983908 0.0345140427182 0.00980317551499 101.007762533 2015-03-20 15:13:06.910000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.0024252579943 0.000274987555187 4.13549622577e-05 2.81279221513e-06 355517.617629 2015-03-20 15:13:06.910000
|
||||
127 Michigan State 7 East 0 1 1 1 0.285158327598 0.162016496154 0.0528595955783 0.0264773892676 0.00770645117592 128.761413804 2015-03-20 15:13:06.910000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 15:13:06.910000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.70911376014 0.509060224177 0.235310176956 0.1514841471 0.0627287517918 14.9416530927 2015-03-20 15:13:06.910000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.00572791226218 0.00107796213036 9.48163481442e-05 1.75943533446e-05 1.53067375003e-06 653306.081264 2015-03-20 15:13:06.910000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-22.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-22.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.840455479276 0.705703774462 0.502431152844 0.36763200963 1.72011134451 2015-03-20 16:04:34.440000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0312989365882 0.0123067765301 0.00337149374105 0.00107732085858 927.228570005 2015-03-20 16:04:34.440000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
277 West Virginia 5 Midwest 0 1 1 0.682463058399 0.391825246624 0.0588691189949 0.0280459671811 0.00837707167758 0.00288157559251 346.0323675 2015-03-20 16:04:34.440000
|
||||
2084 Buffalo 12 Midwest 0 1 1 0.317536941601 0.130247881064 0.0113507905238 0.00392955682188 0.0007544774151 0.000177987044258 5617.38646272 2015-03-20 16:04:34.440000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.382712018173 0.0520310914528 0.0234251192773 0.00655090149754 0.00212858694688 468.795232685 2015-03-20 16:04:34.440000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0952148541384 0.00599458316423 0.00168534709366 0.000322896158395 7.62351407605e-05 13116.3103378 2015-03-20 16:04:34.440000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.15809376854 0.0284960450638 0.0108306606542 0.00461071566454 215.88606992 2015-03-20 16:04:34.440000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.325307889739 0.0776626393612 0.0298916594125 0.0127314400196 77.5457103404 2015-03-20 16:04:34.440000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.320553931134 0.159048458789 0.0340562404565 0.0120814902821 0.00482700417558 206.167834049 2015-03-20 16:04:34.440000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0740726577052 0.0290926658089 0.0045554755674 0.00140485779839 0.000500371020894 1997.51701686 2015-03-20 16:04:34.440000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.605373411161 0.328457217123 0.0801330581853 0.0320536318329 0.0142052858827 69.3963305109 2015-03-20 16:04:34.440000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.160805976497 0.101661504251 8.83656505347 2015-03-20 16:04:34.440000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.59991902644e-06 1.87237057942e-07 5340822.0774 2015-03-20 16:04:34.440000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000669172388016 0.000151425498865 6602.90758158 2015-03-20 16:04:34.440000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00156132305217 0.000440598770755 2268.6386517 2015-03-20 16:04:34.440000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00458512298771 0.00150006104858 665.63953507 2015-03-20 16:04:34.440000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0239113476544 0.01059043779 93.4248028106 2015-03-20 16:04:34.440000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.0101164445509 0.00399235634417 249.478643135 2015-03-20 16:04:34.440000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000454033466083 9.22285052841e-05 10841.6347898 2015-03-20 16:04:34.440000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0117493490004 0.004970552972 200.184859237 2015-03-20 16:04:34.440000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.17807533717 0.0946390942689 9.56645784414 2015-03-20 16:04:34.440000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.164615912668 0.0611774301532 15.3458974575 2015-03-20 16:04:34.440000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 4.92872816367e-06 3.31307881285e-07 3018339.51192 2015-03-20 16:04:34.440000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00429085291885 0.000767800510661 1301.42163962 2015-03-20 16:04:34.440000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000903209838997 0.000139330725964 7176.16780041 2015-03-20 16:04:34.440000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0530274369845 0.0132405687971 74.5254562948 2015-03-20 16:04:34.440000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0115195034263 0.00252869596476 394.460748914 2015-03-20 16:04:34.440000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00759201817052 0.00095876528423 1042.00814438 2015-03-20 16:04:34.440000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000528594252967 3.8117195601e-05 26233.8786219 2015-03-20 16:04:34.440000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.011226069133 0.00264953350399 376.424931028 2015-03-20 16:04:34.440000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00262955409577 0.000487000631862 2052.38542617 2015-03-20 16:04:34.440000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.127457855403 0.037602764965 25.5937890719 2015-03-20 16:04:34.440000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.25444071733e-05 7.34791789689e-07 1360928.74096 2015-03-20 16:04:34.440000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.740641297002 0.522272344626 0.354868394316 0.160104316815 5.24592777941 2015-03-20 16:04:34.440000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0593961495943 0.0187169596322 0.00648023929962 0.00116554690455 856.96632988 2015-03-20 16:04:34.440000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.579438001414 0.119070613263 0.0429847775581 0.01834928805 0.00432852525177 230.025566869 2015-03-20 16:04:34.440000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.354826213661 0.0771138842568 0.0289952752962 0.0135823153851 0.00361524548182 275.606389532 2015-03-20 16:04:34.440000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0657357849247 0.00377805588409 0.000492691709726 8.4761717827e-05 6.70381795475e-06 149167.72844 2015-03-20 16:04:34.440000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.066149943057 0.0183351848515 0.00656419585927 0.0012360682197 808.016835851 2015-03-20 16:04:34.440000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0418192293118 0.0081832442325 0.00290618702239 0.000541244808906 1846.59277788 2015-03-20 16:04:34.440000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.217450887175 0.0702857186738 0.0346392434332 0.00983619964448 100.665280916 2015-03-20 16:04:34.440000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.0024252579943 0.000273691558459 4.12202494207e-05 2.80860876539e-06 356047.166025 2015-03-20 16:04:34.440000
|
||||
127 Michigan State 7 East 0 1 1 1 0.285158327598 0.162016496154 0.0530629520938 0.0265744758479 0.00773270787755 128.320804023 2015-03-20 16:04:34.440000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:04:34.440000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.70911376014 0.509060224177 0.236303125201 0.152083718057 0.0629510559057 14.8853570542 2015-03-20 16:04:34.440000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.00572791226218 0.00107796213036 9.40345673123e-05 1.74807341159e-05 1.52416838557e-06 656094.487526 2015-03-20 16:04:34.440000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-23.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-23.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83469370167 0.70108681722 0.499398704812 0.365588414665 1.73531643752 2015-03-20 16:49:28.360000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0302257054606 0.0119305904853 0.00328370908151 0.00105379778634 947.948662598 2015-03-20 16:49:28.360000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.562744514637 0.081008693938 0.0376235218813 0.0108577319781 0.00361791112069 275.402588853 2015-03-20 16:49:28.360000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.353377247004 0.0486871968832 0.0220968963222 0.00624623636012 0.00204984981852 486.840616891 2015-03-20 16:49:28.360000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0838782383587 0.00538470204838 0.00153462379192 0.000298679477358 7.15463670582e-05 13975.9500691 2015-03-20 16:49:28.360000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.15809376854 0.0285966305841 0.0108737963057 0.00463100483827 214.935857319 2015-03-20 16:49:28.360000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.325307889739 0.0779497849503 0.0300077532423 0.0127830935798 77.2283250731 2015-03-20 16:49:28.360000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2724 Wichita State 7 Midwest 0 1 1 0.715652526737 0.320553931134 0.159048458789 0.0341814110507 0.012129712145 0.00484768066868 205.28421473 2015-03-20 16:49:28.360000
|
||||
84 Indiana 10 Midwest 0 1 1 0.284347473263 0.0740726577052 0.0290926658089 0.00457054444373 0.00141043704376 0.000502663889548 1988.40091141 2015-03-20 16:49:28.360000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.605373411161 0.328457217123 0.080429179271 0.0321782865129 0.0142630735609 69.1111156534 2015-03-20 16:49:28.360000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.161274949239 0.101940681346 8.80962641014 2015-03-20 16:49:28.360000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.61122279092e-06 1.88624141024e-07 5301547.33083 2015-03-20 16:49:28.360000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000673442457827 0.000152384396367 6561.35168326 2015-03-20 16:49:28.360000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00157054562905 0.000443141486609 2255.61561876 2015-03-20 16:49:28.360000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00461033950126 0.00150803135382 662.116186191 2015-03-20 16:49:28.360000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0240184296395 0.0106354911353 93.0248068737 2015-03-20 16:49:28.360000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.0101663674545 0.00401123474478 248.299795107 2015-03-20 16:49:28.360000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000457014905017 9.28344862221e-05 10770.8590439 2015-03-20 16:49:28.360000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0118041886483 0.004992664723 199.293842163 2015-03-20 16:49:28.360000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.178738064344 0.0949715565504 9.52946836213 2015-03-20 16:49:28.360000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.164615912668 0.0613011108164 15.312918097 2015-03-20 16:49:28.360000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 4.92872816367e-06 3.32867201855e-07 3004200.05805 2015-03-20 16:49:28.360000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00429085291885 0.000770322173725 1297.15813968 2015-03-20 16:49:28.360000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000903209838997 0.00013982108762 7150.99700577 2015-03-20 16:49:28.360000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0530274369845 0.0132767218223 74.3197975662 2015-03-20 16:49:28.360000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0115195034263 0.00253615269101 393.298026119 2015-03-20 16:49:28.360000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00759201817052 0.000962432902468 1038.03347177 2015-03-20 16:49:28.360000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000528594252967 3.82930918134e-05 26113.3708341 2015-03-20 16:49:28.360000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.011226069133 0.00265702276367 375.361096214 2015-03-20 16:49:28.360000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00262955409577 0.000488573030712 2045.77691387 2015-03-20 16:49:28.360000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.127457855403 0.0376945004743 25.5290688938 2015-03-20 16:49:28.360000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.25444071733e-05 7.38379248576e-07 1354316.58399 2015-03-20 16:49:28.360000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.740641297002 0.522272344626 0.354868394316 0.160369517259 5.23559899096 2015-03-20 16:49:28.360000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0593961495943 0.0187169596322 0.00648023929962 0.00116936522603 854.164817408 2015-03-20 16:49:28.360000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.579438001414 0.119070613263 0.0429847775581 0.01834928805 0.00434076414449 229.374184525 2015-03-20 16:49:28.360000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.354826213661 0.0771138842568 0.0289952752962 0.0135823153851 0.00362471781894 274.883544582 2015-03-20 16:49:28.360000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0657357849247 0.00377805588409 0.000492691709726 8.4761717827e-05 6.73392683686e-06 148500.761933 2015-03-20 16:49:28.360000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.066149943057 0.0183351848515 0.00656419585927 0.00124002586167 805.434793749 2015-03-20 16:49:28.360000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0418192293118 0.0081832442325 0.00290618702239 0.000542987455846 1840.66317147 2015-03-20 16:49:28.360000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.217450887175 0.0702857186738 0.0346392434332 0.00986085932977 100.411040008 2015-03-20 16:49:28.360000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.0024252579943 0.000273691558459 4.12202494207e-05 2.8217781775e-06 354385.467361 2015-03-20 16:49:28.360000
|
||||
127 Michigan State 7 East 0 1 1 1 0.285158327598 0.162016496154 0.0530629520938 0.0265744758479 0.00775176110741 128.002943479 2015-03-20 16:49:28.360000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 16:49:28.360000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.70911376014 0.509060224177 0.236303125201 0.152083718057 0.0630656480388 14.8564928943 2015-03-20 16:49:28.360000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.00572791226218 0.00107796213036 9.40345673123e-05 1.74807341159e-05 1.53081106648e-06 653247.47847 2015-03-20 16:49:28.360000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-24.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-24.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83469370167 0.70110050095 0.499443194047 0.365644897691 1.73489389928 2015-03-20 17:16:10.730000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0302257054606 0.011925038113 0.00328436476081 0.00105465582508 947.176624282 2015-03-20 17:16:10.730000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.562744514637 0.081008693938 0.037611260557 0.0108605752526 0.0036208273917 275.179969885 2015-03-20 17:16:10.730000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.353377247004 0.0486871968832 0.0220892769472 0.00624789161372 0.00205154856796 486.436668875 2015-03-20 17:16:10.730000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0838782383587 0.00538470204838 0.00153342486583 0.000298711858386 7.16127789123e-05 13962.9882042 2015-03-20 17:16:10.730000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0285597742686 0.0108761768269 0.00463846435605 214.588592094 2015-03-20 17:16:10.730000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0778848311094 0.0300195398845 0.0128026982333 77.108534762 2015-03-20 17:16:10.730000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0426029257926 0.0145115916485 0.00558404285059 178.081720316 2015-03-20 17:16:10.730000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0766929673968 0.030950667949 0.0138293771791 71.3098363035 2015-03-20 17:16:10.730000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.161328081791 0.101975118444 8.80631368963 2015-03-20 17:16:10.730000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.61544144034e-06 1.89136704219e-07 5287180.05842 2015-03-20 17:16:10.730000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000674566758779 0.00015264747211 6550.04199355 2015-03-20 17:16:10.730000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00157268097015 0.000443763644125 2252.45183915 2015-03-20 17:16:10.730000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00461563817409 0.00150981714322 661.331862167 2015-03-20 17:16:10.730000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0240363491793 0.0106436409188 92.9528125411 2015-03-20 17:16:10.730000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.0101756104465 0.00401499907734 248.066059727 2015-03-20 17:16:10.730000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000457848109943 9.30096414056e-05 10750.5735454 2015-03-20 17:16:10.730000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0118137596698 0.00499683289734 199.126764402 2015-03-20 17:16:10.730000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.178831135618 0.0950222070367 9.52385575104 2015-03-20 17:16:10.730000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.164615912668 0.0613022372951 15.3126183338 2015-03-20 17:16:10.730000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 4.92872816367e-06 3.33027167487e-07 3002757.02586 2015-03-20 17:16:10.730000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00429085291885 0.000770456513089 1296.93178851 2015-03-20 17:16:10.730000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000903209838997 0.000139851099425 7149.46219954 2015-03-20 17:16:10.730000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0530274369845 0.0132779674077 74.3127319339 2015-03-20 17:16:10.730000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0115195034263 0.00253646531234 393.249428578 2015-03-20 17:16:10.730000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00759201817052 0.000962695393033 1037.75016671 2015-03-20 17:16:10.730000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000528594252967 3.83105443566e-05 26101.4743134 2015-03-20 17:16:10.730000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.011226069133 0.00265730552018 375.321048674 2015-03-20 17:16:10.730000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00262955409577 0.000488653853665 2045.43837862 2015-03-20 17:16:10.730000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.127457855403 0.0376967305846 25.527499454 2015-03-20 17:16:10.730000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.25444071733e-05 7.38770784253e-07 1353598.81921 2015-03-20 17:16:10.730000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.740641297002 0.522272344626 0.354868394316 0.160368144119 5.2356523828 2015-03-20 17:16:10.730000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0593961495943 0.0187169596322 0.00648023929962 0.00116956757787 854.016861721 2015-03-20 17:16:10.730000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.579438001414 0.119070613263 0.0429847775581 0.01834928805 0.00434122658498 229.349644375 2015-03-20 17:16:10.730000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.354826213661 0.0771138842568 0.0289952752962 0.0135823153851 0.00362500800878 274.861459499 2015-03-20 17:16:10.730000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0657357849247 0.00377805588409 0.000492691709726 8.4761717827e-05 6.73678013125e-06 148437.865529 2015-03-20 17:16:10.730000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.066149943057 0.0183351848515 0.00656419585927 0.00124022568998 805.30485893 2015-03-20 17:16:10.730000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0418192293118 0.0081832442325 0.00290618702239 0.000543076498179 1840.36121403 2015-03-20 17:16:10.730000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.217450887175 0.0702857186738 0.0346392434332 0.00986151741178 100.404272613 2015-03-20 17:16:10.730000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.0024252579943 0.000273691558459 4.12202494207e-05 2.82312065047e-06 354216.946666 2015-03-20 17:16:10.730000
|
||||
127 Michigan State 7 East 0 1 1 1 0.285158327598 0.162016496154 0.0530629520938 0.0265744758479 0.00775224070413 127.994962639 2015-03-20 17:16:10.730000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:16:10.730000
|
||||
258 Virginia 2 East 0 1 1 0.96373165892 0.70911376014 0.509060224177 0.236303125201 0.152083718057 0.0630658064884 14.8564530557 2015-03-20 17:16:10.730000
|
||||
2057 Belmont 15 East 0 1 1 0.0362683410801 0.00572791226218 0.00107796213036 9.40345673123e-05 1.74807341159e-05 1.53140908298e-06 652992.384401 2015-03-20 17:16:10.730000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-25.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-25.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83469370167 0.70110050095 0.499443194047 0.366948727554 1.72517636637 2015-03-20 17:31:26.050000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0302257054606 0.011925038113 0.00328436476081 0.00106342713839 939.355915226 2015-03-20 17:31:26.050000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.562744514637 0.081008693938 0.037611260557 0.0108605752526 0.00365035903801 272.945655643 2015-03-20 17:31:26.050000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.353377247004 0.0486871968832 0.0220892769472 0.00624789161372 0.00206841565208 482.461822093 2015-03-20 17:31:26.050000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0838782383587 0.00538470204838 0.00153342486583 0.000298711858386 7.22900629212e-05 13832.1599059 2015-03-20 17:31:26.050000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0285597742686 0.0108761768269 0.00467094812097 213.089297098 2015-03-20 17:31:26.050000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0778848311094 0.0300195398845 0.0128923572551 76.5653342686 2015-03-20 17:31:26.050000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0426029257926 0.0145115916485 0.00562596144581 176.747396535 2015-03-20 17:31:26.050000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0766929673968 0.030950667949 0.0139229065202 70.8240834663 2015-03-20 17:31:26.050000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.161328081791 0.102451947943 8.76067337005 2015-03-20 17:31:26.050000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.61544144034e-06 1.91336052767e-07 5226405.55296 2015-03-20 17:31:26.050000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000674566758779 0.000154122403855 6487.34935733 2015-03-20 17:31:26.050000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00157268097015 0.000447688463693 2232.69615503 2015-03-20 17:31:26.050000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00461563817409 0.00152225498531 655.920167546 2015-03-20 17:31:26.050000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0240363491793 0.0107161251453 92.3173125957 2015-03-20 17:31:26.050000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.0101756104465 0.00404465852152 246.239660574 2015-03-20 17:31:26.050000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000457848109943 9.39424364196e-05 10643.8165293 2015-03-20 17:31:26.050000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0118137596698 0.00503203522672 197.72674871 2015-03-20 17:31:26.050000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.178831135618 0.0955728575087 9.4632217354 2015-03-20 17:31:26.050000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.166087356122 0.0618476617441 15.1687600113 2015-03-20 17:31:26.050000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 5.01528899744e-06 3.38947580614e-07 2950307.71201 2015-03-20 17:31:26.050000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00434850962667 0.000780827922679 1279.69190529 2015-03-20 17:31:26.050000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000916035704757 0.000141843742837 7049.01137164 2015-03-20 17:31:26.050000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0536389595995 0.0134308611051 73.4553898795 2015-03-20 17:31:26.050000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0116614923225 0.00256772236039 388.450205142 2015-03-20 17:31:26.050000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00770638617667 0.000977274766999 1022.25367826 2015-03-20 17:31:26.050000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000537728864193 3.89801000787e-05 25653.1157663 2015-03-20 17:31:26.050000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.0113597974978 0.00268893104662 370.894995693 2015-03-20 17:31:26.050000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00266444725244 0.000495147730374 2018.59928049 2015-03-20 17:31:26.050000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.128794861247 0.0380910043403 25.252917646 2015-03-20 17:31:26.050000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.27697549472e-05 7.52223715329e-07 1329390.74825 2015-03-20 17:31:26.050000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.740641297002 0.528356640798 0.359027237178 0.162265677369 5.16273272458 2015-03-20 17:31:26.050000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0593961495943 0.0191031461962 0.00661755339274 0.00119521727355 835.667961658 2015-03-20 17:31:26.050000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.579438001414 0.119070613263 0.0438329983618 0.018719294698 0.00443135470335 224.664625593 2015-03-20 17:31:26.050000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
97 Louisville 4 East 0 1 1 0.744975249321 0.354826213661 0.0771138842568 0.0295586362472 0.0138513967519 0.00369877833837 269.359537263 2015-03-20 17:31:26.050000
|
||||
300 UC Irvine 13 East 0 1 1 0.255024750679 0.0657357849247 0.00377805588409 0.000504249497371 8.68539201877e-05 6.91319117336e-06 144649.997625 2015-03-20 17:31:26.050000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0673730358333 0.0187099355277 0.00671032008953 0.00127085979115 785.868863871 2015-03-20 17:31:26.050000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0425656479592 0.00835333566977 0.00297351250164 0.000557388392538 1793.08113514 2015-03-20 17:31:26.050000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.221398210664 0.0716682499727 0.0353619538609 0.0100841632033 98.165392293 2015-03-20 17:31:26.050000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00245688126103 0.000278637558582 4.21733522652e-05 2.9057809646e-06 344140.562005 2015-03-20 17:31:26.050000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.15954466479 0.0527306491893 0.0265956426129 0.00783782139007 126.586474638 2015-03-20 17:31:26.050000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.506661559492 0.226903520981 0.142280702185 0.0566363577771 16.6565026292 2015-03-20 17:31:26.050000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 17:31:26.050000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-26.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-26.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83469370167 0.70110050095 0.499443194047 0.366979692261 1.72494642371 2015-03-20 18:22:24.690000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0302257054606 0.011925038113 0.00328436476081 0.0010639901852 938.858293722 2015-03-20 18:22:24.690000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.562744514637 0.081008693938 0.037611260557 0.0108605752526 0.00365221519039 272.806429214 2015-03-20 18:22:24.690000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
120 Maryland 4 Midwest 0 1 1 0.71732975654 0.353377247004 0.0486871968832 0.0220892769472 0.00624789161372 0.00206948500841 482.212004889 2015-03-20 18:22:24.690000
|
||||
2674 Valparaiso 13 Midwest 0 1 1 0.28267024346 0.0838782383587 0.00538470204838 0.00153342486583 0.000298711858386 7.23400599292e-05 13822.5992751 2015-03-20 18:22:24.690000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0285597742686 0.0108761768269 0.00467267989913 213.009951802 2015-03-20 18:22:24.690000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0778848311094 0.0300195398845 0.0128971371712 76.5365871298 2015-03-20 18:22:24.690000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0426029257926 0.0145115916485 0.00562837056963 176.671314926 2015-03-20 18:22:24.690000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0766929673968 0.030950667949 0.01392770741 70.799325658 2015-03-20 18:22:24.690000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.161328081791 0.102468050442 8.75913951405 2015-03-20 18:22:24.690000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.61544144034e-06 1.91540846369e-07 5220817.53014 2015-03-20 18:22:24.690000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000674566758779 0.000154233875115 6482.65995638 2015-03-20 18:22:24.690000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00157268097015 0.000447957762789 2231.35332227 2015-03-20 18:22:24.690000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00461563817409 0.00152304522548 655.579320999 2015-03-20 18:22:24.690000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0240363491793 0.0107198739218 92.2846792133 2015-03-20 18:22:24.690000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.0101756104465 0.00404633376156 246.137299819 2015-03-20 18:22:24.690000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000457848109943 9.40158959671e-05 10635.4991762 2015-03-20 18:22:24.690000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0118137596698 0.00503392408239 197.652181406 2015-03-20 18:22:24.690000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.178831135618 0.0955966977067 9.46061238505 2015-03-20 18:22:24.690000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.166209111819 0.0618921002928 15.1571508362 2015-03-20 18:22:24.690000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 5.02541976904e-06 3.39707482212e-07 2943708.0802 2015-03-20 18:22:24.690000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00435459677302 0.000781949444986 1277.85505439 2015-03-20 18:22:24.690000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000917429780017 0.000142067825877 7037.89141562 2015-03-20 18:22:24.690000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0536981028937 0.0134456926387 73.3732604093 2015-03-20 18:22:24.690000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0116757723521 0.00257090587689 387.967954443 2015-03-20 18:22:24.690000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00771917516482 0.000978975015568 1020.4765281 2015-03-20 18:22:24.690000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000538796396052 3.90653204016e-05 25597.151755 2015-03-20 18:22:24.690000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.0113729815744 0.00269207768094 370.46030632 2015-03-20 18:22:24.690000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00266810594483 0.000495844390611 2015.76174811 2015-03-20 18:22:24.690000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.128916985447 0.0381268187266 25.228256996 2015-03-20 18:22:24.690000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.27961212381e-05 7.53967575698e-07 1326315.98263 2015-03-20 18:22:24.690000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.737324717624 0.526370218641 0.357961842587 0.161992635729 5.17312012671 2015-03-20 18:22:24.690000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0577603393457 0.0186780630446 0.00650388265188 0.00118281019765 844.44418199 2015-03-20 18:22:24.690000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114130235519 0.0424436191768 0.0182918303495 0.00438503465741 227.048368628 2015-03-20 18:22:24.690000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0907847075111 0.0327065966791 0.0145363988788 0.0036036100414 276.49950425 2015-03-20 18:22:24.690000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0673730358333 0.0187834789775 0.00673862487066 0.00127670866266 782.264051734 2015-03-20 18:22:24.690000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0425656479592 0.00839054184798 0.00298823254371 0.000560517287488 1783.06629434 2015-03-20 18:22:24.690000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.221398210664 0.0719250335926 0.0354938285301 0.0101238854489 97.7763053073 2015-03-20 18:22:24.690000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00245688126103 0.00027986673194 4.24171580785e-05 2.92741311633e-06 341597.524111 2015-03-20 18:22:24.690000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.15954466479 0.0529168340541 0.0266933451844 0.00786822604888 126.093450771 2015-03-20 18:22:24.690000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.506661559492 0.227505747254 0.14266071756 0.0567891116546 16.6090093834 2015-03-20 18:22:24.690000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 18:22:24.690000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-27.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-27.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83302225173 0.699790986546 0.49861912707 0.366448709419 1.72889486113 2015-03-20 19:35:59.640000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0297498400436 0.0117740855318 0.00325510030807 0.00105818816784 944.011511559 2015-03-20 19:35:59.640000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.528406215747 0.0771297207082 0.0361089968738 0.0105441646116 0.00358254661691 278.131050321 2015-03-20 19:35:59.640000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.471593784253 0.0600981875179 0.025999176165 0.00690330622917 0.00215732761555 462.536457232 2015-03-20 19:35:59.640000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0286422900545 0.0109104279563 0.00468850872167 212.287435166 2015-03-20 19:35:59.640000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0780815279804 0.0300989868789 0.0129327122713 76.323300714 2015-03-20 19:35:59.640000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0427198102563 0.0145544469418 0.00564607858269 176.114077559 2015-03-20 19:35:59.640000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0768831265923 0.0310312874349 0.0139655904336 70.6045629975 2015-03-20 19:35:59.640000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.8527395642 0.631249636395 0.33474307818 0.161507967494 0.102576344903 8.74883635157 2015-03-20 19:35:59.640000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00305843982618 0.000365922165567 2.6365121085e-05 1.62410585748e-06 1.92552966151e-07 5193375.24337 2015-03-20 19:35:59.640000
|
||||
2483 Oregon 8 West 0 1 1 0.406109460658 0.0477514944956 0.0198243666827 0.00506421271301 0.000677087141087 0.000154792333065 6459.2682846 2015-03-20 19:35:59.640000
|
||||
197 Oklahoma State 9 West 0 1 1 0.593890539342 0.0964505014782 0.0379051461035 0.00908046761159 0.00157768308771 0.000449330638549 2224.53263501 2015-03-20 19:35:59.640000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0824740594093 0.0221642047674 0.00462852835043 0.00152712438969 653.825505213 2015-03-20 19:35:59.640000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.228180869243 0.0791218325189 0.0240847338782 0.0107404164059 92.1062597769 2015-03-20 19:35:59.640000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0392181953885 0.0101993742939 0.00405536740958 245.586782159 2015-03-20 19:35:59.640000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0039048401971 0.000459682404046 9.43819484356e-05 10594.2464065 2015-03-20 19:35:59.640000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0414421499328 0.0118390683761 0.00504420648053 197.247237471 2015-03-20 19:35:59.640000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.465234653569 0.179107403439 0.0957368792956 9.44529555755 2015-03-20 19:35:59.640000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.166209111819 0.0619243796066 15.1487286001 2015-03-20 19:35:59.640000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 5.02541976904e-06 3.40260122448e-07 2938926.99663 2015-03-20 19:35:59.640000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00435459677302 0.000782710951446 1276.61084491 2015-03-20 19:35:59.640000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000917429780017 0.000142219796857 7030.36990841 2015-03-20 19:35:59.640000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0536981028937 0.0134559560266 73.316532993 2015-03-20 19:35:59.640000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0116757723521 0.00257307550141 387.639975567 2015-03-20 19:35:59.640000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00771917516482 0.000980150615831 1019.25136122 2015-03-20 19:35:59.640000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000538796396052 3.9126984646e-05 25556.8089916 2015-03-20 19:35:59.640000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.0113729815744 0.00269422713026 370.163955989 2015-03-20 19:35:59.640000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00266810594483 0.000496316339142 2013.84400398 2015-03-20 19:35:59.640000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.128916985447 0.0381520034181 25.2109433426 2015-03-20 19:35:59.640000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.27961212381e-05 7.55266002113e-07 1324035.8257 2015-03-20 19:35:59.640000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.737324717624 0.526370218641 0.357961842587 0.162058592439 5.17060771015 2015-03-20 19:35:59.640000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0577603393457 0.0186780630446 0.00650388265188 0.00118395243609 843.6285252 2015-03-20 19:35:59.640000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114130235519 0.0424436191768 0.0182918303495 0.00438850103748 226.868238257 2015-03-20 19:35:59.640000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0907847075111 0.0327065966791 0.0145363988788 0.00360638321486 276.286117537 2015-03-20 19:35:59.640000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0673730358333 0.0187834789775 0.00673862487066 0.00127790806598 781.528905342 2015-03-20 19:35:59.640000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0425656479592 0.00839054184798 0.00298823254371 0.000561047456812 1781.38041695 2015-03-20 19:35:59.640000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.221398210664 0.0719250335926 0.0354938285301 0.0101307974905 97.7089121991 2015-03-20 19:35:59.640000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00245688126103 0.00027986673194 4.24171580785e-05 2.93213352732e-06 341047.588232 2015-03-20 19:35:59.640000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.15954466479 0.0529168340541 0.0266933451844 0.00787343944469 126.009295877 2015-03-20 19:35:59.640000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.506661559492 0.227505747254 0.14266071756 0.056816486198 16.600525251 2015-03-20 19:35:59.640000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 19:35:59.640000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-28.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-28.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83302225173 0.699790986546 0.497665402518 0.365786290548 1.73383673976 2015-03-20 20:59:36.230000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0297498400436 0.0117740855318 0.00323872139586 0.00105316504894 948.518787204 2015-03-20 20:59:36.230000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.528406215747 0.0771297207082 0.0361089968738 0.0104924556333 0.00356600032922 279.426222007 2015-03-20 20:59:36.230000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.471593784253 0.0600981875179 0.025999176165 0.00686794362121 0.00214689696436 464.788538807 2015-03-20 20:59:36.230000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0286422900545 0.0108645762191 0.00467003876859 213.130984677 2015-03-20 20:59:36.230000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0780815279804 0.0299735382646 0.0128821939685 76.6265287145 2015-03-20 20:59:36.230000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0427198102563 0.0144887503296 0.00562215241692 176.867821048 2015-03-20 20:59:36.230000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0768831265923 0.0309061969396 0.0139128602729 70.875946454 2015-03-20 20:59:36.230000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.881631288208 0.651561527603 0.344617304263 0.165795409205 0.105065907937 8.51783522965 2015-03-20 20:59:36.230000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00368439777226 0.000435582274611 3.10077806445e-05 1.88574909589e-06 2.20908499276e-07 4526760.09466 2015-03-20 20:59:36.230000
|
||||
2483 Oregon 8 West 0 1 1 1 0.114684314019 0.0469079377713 0.011770016873 0.00153758873707 0.000344200426393 2904.28402442 2015-03-20 20:59:36.230000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0794365443283 0.0214248416044 0.00449242553012 0.00148754142728 671.250185214 2015-03-20 20:59:36.230000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.221658408022 0.077068801177 0.0235292583297 0.010518901315 94.0669627989 2015-03-20 20:59:36.230000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0385043150469 0.0100300454461 0.0039935910196 249.401204102 2015-03-20 20:59:36.230000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0038006404747 0.000448490430755 9.22857974212e-05 10834.9035512 2015-03-20 20:59:36.230000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.040765542901 0.0116629618745 0.00497538664957 199.989404529 2015-03-20 20:59:36.230000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.46201752988 0.178004349777 0.095206269284 9.50350998438 2015-03-20 20:59:36.230000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
150 Duke 1 South 0 1 1 0.981596636733 0.843408298885 0.547399839454 0.347449141879 0.166209111819 0.0618448373435 15.1694984247 2015-03-20 20:59:36.230000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2523 Robert Morris 16b South 1 1 1 0.0184033632666 0.00377918113145 0.000411676485787 5.63050298873e-05 5.02541976904e-06 3.38986160303e-07 2949971.94021 2015-03-20 20:59:36.230000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0989547253775 0.0419522180607 0.0181179302584 0.00435459677302 0.000780857885645 1279.64276277 2015-03-20 20:59:36.230000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0538577946062 0.0148883003192 0.00443014243943 0.000917429780017 0.000141852238242 7048.58915273 2015-03-20 20:59:36.230000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.302408058438 0.161226454283 0.0536981028937 0.0134307313616 73.4561091331 2015-03-20 20:59:36.230000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0929399072417 0.0398744567845 0.0116757723521 0.00256775995466 388.444503247 2015-03-20 20:59:36.230000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.171401484314 0.0448039460096 0.00771917516482 0.000977334425473 1022.19121678 2015-03-20 20:59:36.230000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.041427949296 0.0055379494781 0.000538796396052 3.89841489074e-05 25650.4513726 2015-03-20 20:59:36.230000
|
||||
2294 Iowa 7 South 0 1 1 0.623859883167 0.138469290364 0.0975011551592 0.0362762072008 0.0113729815744 0.00268895103452 370.892231269 2015-03-20 20:59:36.230000
|
||||
2166 Davidson 10 South 0 1 1 0.376140116833 0.0567039212027 0.0357181538806 0.0107604326515 0.00266810594483 0.000495166417844 2018.52306127 2015-03-20 20:59:36.230000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.799684775114 0.652315593608 0.331303752131 0.128916985447 0.0380899470809 25.253646346 2015-03-20 20:59:36.230000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00514201331911 0.0016356637415 0.000163281854088 1.27961212381e-05 7.52301934597e-07 1329252.52709 2015-03-20 20:59:36.230000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.737324717624 0.526370218641 0.357961842587 0.161896734869 5.17677682513 2015-03-20 20:59:36.230000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0577603393457 0.0186780630446 0.00650388265188 0.00118117155577 845.617068549 2015-03-20 20:59:36.230000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114130235519 0.0424436191768 0.0182918303495 0.00437998980443 227.311033735 2015-03-20 20:59:36.230000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0907847075111 0.0327065966791 0.0145363988788 0.00359956893518 276.811042935 2015-03-20 20:59:36.230000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0673730358333 0.0187834789775 0.00673862487066 0.00127498363738 783.32379105 2015-03-20 20:59:36.230000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0425656479592 0.00839054184798 0.00298823254371 0.000559755242654 1785.49510322 2015-03-20 20:59:36.230000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.221398210664 0.0719250335926 0.0354938285301 0.010113772646 97.8750721416 2015-03-20 20:59:36.230000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00245688126103 0.00027986673194 4.24171580785e-05 2.92123625467e-06 342319.823384 2015-03-20 20:59:36.230000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.15954466479 0.0529168340541 0.0266933451844 0.00786059379592 126.216852309 2015-03-20 20:59:36.230000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.506661559492 0.227505747254 0.14266071756 0.0567490920156 16.6214273124 2015-03-20 20:59:36.230000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 20:59:36.230000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-29.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-29.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83302225173 0.699790986546 0.497665402518 0.363791546998 1.74882692644 2015-03-20 22:14:14.090000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0297498400436 0.0117740855318 0.00323872139586 0.00103682934024 963.478879203 2015-03-20 22:14:14.090000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.528406215747 0.0771297207082 0.0361089968738 0.0104924556333 0.00351239022143 283.706407021 2015-03-20 22:14:14.090000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.471593784253 0.0600981875179 0.025999176165 0.00686794362121 0.00211269011153 472.330184366 2015-03-20 22:14:14.090000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0286422900545 0.0108645762191 0.00461214688349 215.818766891 2015-03-20 22:14:14.090000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0780815279804 0.0299735382646 0.0127224812834 77.6010195434 2015-03-20 22:14:14.090000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0427198102563 0.0144887503296 0.00554587640259 179.314151887 2015-03-20 22:14:14.090000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0768831265923 0.0309061969396 0.0137479144313 71.7383055076 2015-03-20 22:14:14.090000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.881631288208 0.651561527603 0.344617304263 0.165795409205 0.104272632822 8.59024408354 2015-03-20 22:14:14.090000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00368439777226 0.000435582274611 3.10077806445e-05 1.88574909589e-06 2.15296114577e-07 4644764.6613 2015-03-20 22:14:14.090000
|
||||
2483 Oregon 8 West 0 1 1 1 0.114684314019 0.0469079377713 0.011770016873 0.00153758873707 0.000337537934858 2961.6299646 2015-03-20 22:14:14.090000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0794365443283 0.0214248416044 0.00449242553012 0.00146475830511 681.706489192 2015-03-20 22:14:14.090000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.221658408022 0.077068801177 0.0235292583297 0.0103933345029 95.2155119438 2015-03-20 22:14:14.090000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0385043150469 0.0100300454461 0.00394057352535 252.770166593 2015-03-20 22:14:14.090000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0038006404747 0.000448490430755 9.04231728561e-05 11058.1120441 2015-03-20 22:14:14.090000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.040765542901 0.0116629618745 0.00491327211165 202.530351521 2015-03-20 22:14:14.090000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.46201752988 0.178004349777 0.094277077647 9.60703221778 2015-03-20 22:14:14.090000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
150 Duke 1 South 0 1 1 1 0.869628481302 0.579619957798 0.373282472315 0.185451800755 0.0722036746234 12.8497106306 2015-03-20 22:14:14.090000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0853112760779 0.0364779224296 0.0155283509743 0.00377579409075 0.000685822381144 1457.10347911 2015-03-20 22:14:14.090000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0450602426203 0.0126369735454 0.00369297888367 0.000777374339605 0.000122365330955 8171.24937977 2015-03-20 22:14:14.090000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.284930951989 0.149482474797 0.0498632980199 0.0124934943361 79.0416579302 2015-03-20 22:14:14.090000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0863341942372 0.036272702808 0.0106458280751 0.00234737033464 425.008621326 2015-03-20 22:14:14.090000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.16383750179 0.0407416296288 0.00703335358 0.000892441326155 1119.5218435 2015-03-20 22:14:14.090000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.0385618389329 0.00485139731334 0.000473963345366 3.44441237954e-05 29031.5283332 2015-03-20 22:14:14.090000
|
||||
2294 Iowa 7 South 0 1 1 1 0.26511710471 0.199106159988 0.0817550054779 0.0298622478238 0.00839838406684 118.070525001 2015-03-20 22:14:14.090000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.73139410249 0.597374259432 0.294286924339 0.115031568257 0.034166200653 28.2686918911 2015-03-20 22:14:14.090000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00348879280027 0.00112023985725 0.000106063463348 8.45450479181e-06 5.06003054704e-07 1976271.65429 2015-03-20 22:14:14.090000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.737324717624 0.526370218641 0.3503562567 0.158484414065 5.30976872964 2015-03-20 22:14:14.090000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0577603393457 0.0186780630446 0.00623753686104 0.0011333401446 881.347638317 2015-03-20 22:14:14.090000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114130235519 0.0424436191768 0.0176411136264 0.00422581193255 235.640914447 2015-03-20 22:14:14.090000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0907847075111 0.0327065966791 0.0140313442494 0.00347576315379 286.706600178 2015-03-20 22:14:14.090000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.208248345566 0.0673730358333 0.0187834789775 0.00646749905127 0.00122425763383 815.821535247 2015-03-20 22:14:14.090000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.191097192868 0.0425656479592 0.00839054184798 0.00286747473582 0.000537387339555 1859.85515306 2015-03-20 22:14:14.090000
|
||||
201 Oklahoma 3 East 0 1 1 0.90189781321 0.579873082674 0.221398210664 0.0719250335926 0.0343649674086 0.00979520571311 101.090760448 2015-03-20 22:14:14.090000
|
||||
399 Albany 14 East 0 1 1 0.0981021867898 0.0207813788918 0.00245688126103 0.00027986673194 3.99660607848e-05 2.75475695555e-06 363007.43092 2015-03-20 22:14:14.090000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.15954466479 0.0529168340541 0.0258615251577 0.0076180211366 130.267685147 2015-03-20 22:14:14.090000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.506661559492 0.227505747254 0.139208633358 0.0553866399548 17.0548955636 2015-03-20 22:14:14.090000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:14:14.090000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-30.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-30.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83302225173 0.699790986546 0.497665402518 0.363824872212 1.74857514254 2015-03-20 22:57:50.980000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0297498400436 0.0117740855318 0.00323872139586 0.00103735951975 962.985947943 2015-03-20 22:57:50.980000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.528406215747 0.0771297207082 0.0361089968738 0.0104924556333 0.00351410351552 283.567598986 2015-03-20 22:57:50.980000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.471593784253 0.0600981875179 0.025999176165 0.00686794362121 0.00211381486959 472.078326011 2015-03-20 22:57:50.980000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0286422900545 0.0108645762191 0.00461381940398 215.740169574 2015-03-20 22:57:50.980000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0780815279804 0.0299735382646 0.012727095754 77.5725211255 2015-03-20 22:57:50.980000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0427198102563 0.0144887503296 0.0055481893893 179.238980654 2015-03-20 22:57:50.980000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0768831265923 0.0309061969396 0.0137525634494 71.713716514 2015-03-20 22:57:50.980000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.881631288208 0.651561527603 0.344617304263 0.165795409205 0.104289528288 8.58869041233 2015-03-20 22:57:50.980000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00368439777226 0.000435582274611 3.10077806445e-05 1.88574909589e-06 2.15519120695e-07 4639958.53943 2015-03-20 22:57:50.980000
|
||||
2483 Oregon 8 West 0 1 1 1 0.114684314019 0.0469079377713 0.011770016873 0.00153758873707 0.000337777201895 2959.53136325 2015-03-20 22:57:50.980000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0794365443283 0.0214248416044 0.00449242553012 0.00146549315608 681.364155609 2015-03-20 22:57:50.980000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.221658408022 0.077068801177 0.0235292583297 0.0103968872161 95.182634207 2015-03-20 22:57:50.980000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0385043150469 0.0100300454461 0.0039421629038 252.667853005 2015-03-20 22:57:50.980000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0038006404747 0.000448490430755 9.04912378687e-05 11049.7936851 2015-03-20 22:57:50.980000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.040765542901 0.0116629618745 0.00491507358225 202.455753666 2015-03-20 22:57:50.980000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.46201752988 0.178004349777 0.0943004488548 9.60440339515 2015-03-20 22:57:50.980000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
150 Duke 1 South 0 1 1 1 0.869628481302 0.579619957798 0.373282472315 0.185580413429 0.0722575863521 12.8393772957 2015-03-20 22:57:50.980000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
21 San Diego State 8 South 0 1 1 0.582384112389 0.0853112760779 0.0364779224296 0.0155283509743 0.00378095174286 0.000686863479969 1454.89338953 2015-03-20 22:57:50.980000
|
||||
2599 St. John's 9 South 0 1 1 0.417615887611 0.0450602426203 0.0126369735454 0.00369297888367 0.000778524526762 0.000122568295808 8157.71668451 2015-03-20 22:57:50.980000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.284930951989 0.149482474797 0.0499175862864 0.0125083312892 78.9467152636 2015-03-20 22:57:50.980000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0863341942372 0.036272702808 0.0106586604795 0.0023504846708 424.444170057 2015-03-20 22:57:50.980000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.16383750179 0.0407416296288 0.00704475733193 0.000894077535402 1117.47122918 2015-03-20 22:57:50.980000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.0385618389329 0.00485139731334 0.000474876457667 3.45223831062e-05 28965.7140569 2015-03-20 22:57:50.980000
|
||||
2294 Iowa 7 South 0 1 1 1 0.26511710471 0.199106159988 0.0817550054779 0.0298921905113 0.00840761446877 117.939801975 2015-03-20 22:57:50.980000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.73139410249 0.597374259432 0.294286924339 0.115139324753 0.0342008574891 28.239032978 2015-03-20 22:57:50.980000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00348879280027 0.00112023985725 0.000106063463348 8.47137973301e-06 5.07214012667e-07 1971553.36369 2015-03-20 22:57:50.980000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.737324717624 0.527232604077 0.350959314624 0.158777724668 5.29811267347 2015-03-20 22:57:50.980000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0577603393457 0.0187441521899 0.00626253225343 0.00113857304138 877.292356882 2015-03-20 22:57:50.980000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114130235519 0.0425850984015 0.0177063765635 0.00424353024068 234.652851113 2015-03-20 22:57:50.980000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0907847075111 0.0328172804056 0.0140838073446 0.00349043676694 285.497096716 2015-03-20 22:57:50.980000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.193943360158 0.0635674871173 0.0179542680629 0.00625934955532 0.0012042482677 829.393554903 2015-03-20 22:57:50.980000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.177330809896 0.0401356462072 0.00803411052375 0.00278083868099 0.00052987598747 1886.234039 2015-03-20 22:57:50.980000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.628725829946 0.231142962858 0.0722497119235 0.0334536319801 0.00912896083576 108.541493056 2015-03-20 22:57:50.980000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.159001243434 0.0528444428466 0.0258685450352 0.00763759038731 129.931347361 2015-03-20 22:57:50.980000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.506152660384 0.227538331569 0.139349847065 0.0555157505528 17.012906068 2015-03-20 22:57:50.980000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 22:57:50.980000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-31.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-31.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83302225173 0.699790986546 0.497665402518 0.36394432015 1.74767304951 2015-03-20 23:56:02.110000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0297498400436 0.0117740855318 0.00323872139586 0.00103859998317 961.834600625 2015-03-20 23:56:02.110000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.528406215747 0.0771297207082 0.0361089968738 0.0104924556333 0.00351814245538 283.240906297 2015-03-20 23:56:02.110000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.471593784253 0.0600981875179 0.025999176165 0.00686794362121 0.00211643013643 471.493744436 2015-03-20 23:56:02.110000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0286422900545 0.0108645762191 0.00461797798982 215.544990514 2015-03-20 23:56:02.110000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0780815279804 0.0299735382646 0.0127385688356 77.5017542322 2015-03-20 23:56:02.110000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0427198102563 0.0144887503296 0.00555379082324 179.057195495 2015-03-20 23:56:02.110000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0768831265923 0.0309061969396 0.0137642853258 71.6517923981 2015-03-20 23:56:02.110000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.881631288208 0.651561527603 0.344617304263 0.165795409205 0.104340378798 8.58401734327 2015-03-20 23:56:02.110000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00368439777226 0.000435582274611 3.10077806445e-05 1.88574909589e-06 2.16003922006e-07 4629544.56895 2015-03-20 23:56:02.110000
|
||||
2483 Oregon 8 West 0 1 1 1 0.114684314019 0.0469079377713 0.011770016873 0.00153758873707 0.000338312810667 2954.84432061 2015-03-20 23:56:02.110000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0794365443283 0.0214248416044 0.00449242553012 0.00146721768287 680.56212379 2015-03-20 23:56:02.110000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.221658408022 0.077068801177 0.0235292583297 0.0104058253407 95.1000177553 2015-03-20 23:56:02.110000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0385043150469 0.0100300454461 0.00394603555614 252.418902534 2015-03-20 23:56:02.110000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0038006404747 0.000448490430755 9.06426276493e-05 11031.3368368 2015-03-20 23:56:02.110000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.040765542901 0.0116629618745 0.00491954314937 202.270907407 2015-03-20 23:56:02.110000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.46201752988 0.178004349777 0.0943635300527 9.59731444385 2015-03-20 23:56:02.110000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567003092077 0.365673214206 0.182157453373 0.0710937044255 13.0659430829 2015-03-20 23:56:02.110000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0653458991603 0.0282381366977 0.0070238583178 0.00130649397521 764.407280074 2015-03-20 23:56:02.110000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.282536222451 0.148334500319 0.0495868753134 0.0124405417387 79.3823515889 2015-03-20 23:56:02.110000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0851147863118 0.0358147578646 0.0105445977989 0.00233042664741 428.105975556 2015-03-20 23:56:02.110000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.16383750179 0.0407102387708 0.00704022974524 0.000893627188422 1118.03488721 2015-03-20 23:56:02.110000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.0385618389329 0.00483417774324 0.000473537394374 3.44517134921e-05 29025.1324804 2015-03-20 23:56:02.110000
|
||||
2294 Iowa 7 South 0 1 1 1 0.26511710471 0.199106159988 0.0817930739267 0.0299030716995 0.00840969865107 117.91032503 2015-03-20 23:56:02.110000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2250 Gonzaga 2 South 0 1 1 0.974276799349 0.73139410249 0.597374259432 0.294496371241 0.115201883361 0.0342127442231 28.2288742896 2015-03-20 23:56:02.110000
|
||||
2449 North Dakota State 15 South 0 1 1 0.0257232006508 0.00348879280027 0.00112023985725 0.000105529230828 8.43732299032e-06 5.05717027834e-07 1977389.408 2015-03-20 23:56:02.110000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.737324717624 0.527232604077 0.351627689649 0.159039492848 5.28774640871 2015-03-20 23:56:02.110000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0577603393457 0.0187441521899 0.0062887129239 0.0011426830518 874.133308776 2015-03-20 23:56:02.110000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114130235519 0.0425850984015 0.0177688568146 0.00425641167616 233.93968067 2015-03-20 23:56:02.110000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0907847075111 0.0328172804056 0.0141321116584 0.00350076043931 284.652222521 2015-03-20 23:56:02.110000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.193943360158 0.0635674871173 0.0179542680629 0.00628474884891 0.00120846166303 826.498323361 2015-03-20 23:56:02.110000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.177330809896 0.0401356462072 0.00803411052375 0.00279218086576 0.00053173992589 1879.61860942 2015-03-20 23:56:02.110000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.628725829946 0.231142962858 0.0722497119235 0.0335602543476 0.0091540768944 108.240943848 2015-03-20 23:56:02.110000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.159001243434 0.0528444428466 0.0259462671974 0.00765733372676 129.593759614 2015-03-20 23:56:02.110000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.506152660384 0.227538331569 0.139659233369 0.055623027773 16.9781655195 2015-03-20 23:56:02.110000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-20 23:56:02.110000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-32.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-32.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83302225173 0.699790986546 0.497665402518 0.364468363483 1.74372236439 2015-03-21 00:22:00.350000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0297498400436 0.0117740855318 0.00323872139586 0.00104461655001 956.289064579 2015-03-21 00:22:00.350000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.528406215747 0.0771297207082 0.0361089968738 0.0104924556333 0.00353768071504 281.671071968 2015-03-21 00:22:00.350000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.471593784253 0.0600981875179 0.025999176165 0.00686794362121 0.00212914340244 468.672450834 2015-03-21 00:22:00.350000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0286422900545 0.0108645762191 0.00463775985248 214.621341296 2015-03-21 00:22:00.350000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0780815279804 0.0299735382646 0.0127931454099 77.1668595139 2015-03-21 00:22:00.350000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0427198102563 0.0144887503296 0.00558064934107 178.190617235 2015-03-21 00:22:00.350000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0768831265923 0.0309061969396 0.0138198216447 71.3598339912 2015-03-21 00:22:00.350000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
275 Wisconsin 1 West 0 1 1 0.984445020667 0.881631288208 0.651561527603 0.344617304263 0.165795409205 0.104571140957 8.56286783185 2015-03-21 00:22:00.350000
|
||||
324 Coastal Carolina 16 West 0 1 1 0.0155549793334 0.00368439777226 0.000435582274611 3.10077806445e-05 1.88574909589e-06 2.18447746702e-07 4577752.78826 2015-03-21 00:22:00.350000
|
||||
2483 Oregon 8 West 0 1 1 1 0.114684314019 0.0469079377713 0.011770016873 0.00153758873707 0.00034095788876 2931.91351503 2015-03-21 00:22:00.350000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0794365443283 0.0214248416044 0.00449242553012 0.00147557317047 676.702753082 2015-03-21 00:22:00.350000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.221658408022 0.077068801177 0.0235292583297 0.0104481989558 94.7102754487 2015-03-21 00:22:00.350000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0385043150469 0.0100300454461 0.00396456942332 251.234200798 2015-03-21 00:22:00.350000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.0038006404747 0.000448490430755 9.13927071877e-05 10940.7920835 2015-03-21 00:22:00.350000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.040765542901 0.0116629618745 0.00494081773229 201.395646669 2015-03-21 00:22:00.350000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.46201752988 0.178004349777 0.0946570609408 9.56445224541 2015-03-21 00:22:00.350000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567003092077 0.375844542544 0.187198139282 0.0730487805716 12.6894824551 2015-03-21 00:22:00.350000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0653458991603 0.0294022533259 0.00731381269668 0.00136050944806 734.018783899 2015-03-21 00:22:00.350000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.282536222451 0.153582176392 0.0513371366398 0.0128785110693 76.6487277623 2015-03-21 00:22:00.350000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0851147863118 0.0373170534973 0.0109876422607 0.00242852585783 410.772432554 2015-03-21 00:22:00.350000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.172772856764 0.0429963155786 0.00744865779191 0.000947279077048 1054.65511181 2015-03-21 00:22:00.350000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.0410896238461 0.00516811248745 0.000508023229125 3.70978568105e-05 26954.7350741 2015-03-21 00:22:00.350000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.204763641467 0.0847395401069 0.031227379798 0.00886225130122 111.838145299 2015-03-21 00:22:00.350000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.581373877923 0.270950006068 0.0990875901584 0.0272163602088 35.7426060034 2015-03-21 00:22:00.350000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.737324717624 0.527232604077 0.355041518375 0.160563920539 5.22804921956 2015-03-21 00:22:00.350000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0577603393457 0.0187441521899 0.00642330645945 0.0011668228876 856.028097947 2015-03-21 00:22:00.350000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114130235519 0.0425850984015 0.0180893873249 0.00433213546811 229.833040047 2015-03-21 00:22:00.350000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0907847075111 0.0328172804056 0.0143798445557 0.0035613001627 279.796325587 2015-03-21 00:22:00.350000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2507 Providence 6 East 0 1 1 0.51361263507 0.193943360158 0.0635674871173 0.0179542680629 0.00641527051983 0.00123322735516 809.880488349 2015-03-21 00:22:00.350000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
2168 Dayton 11b East 1 1 1 0.48638736493 0.177330809896 0.0401356462072 0.00803411052375 0.00285047010613 0.00054269432684 1841.65792094 2015-03-21 00:22:00.350000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.628725829946 0.231142962858 0.0722497119235 0.0341066909028 0.00930112392863 106.513888394 2015-03-21 00:22:00.350000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.159001243434 0.0528444428466 0.0263443870387 0.00777319964975 127.647152403 2015-03-21 00:22:00.350000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.506152660384 0.227538331569 0.141240742861 0.0562451496698 16.7793108538 2015-03-21 00:22:00.350000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 00:22:00.350000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-33.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-33.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.83302225173 0.699790986546 0.504503423365 0.369204093716 1.70852901422 2015-03-21 01:19:31.520000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0297498400436 0.0117740855318 0.00333246905312 0.001072322247 931.555491412 2015-03-21 01:19:31.520000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.528406215747 0.0771297207082 0.0361089968738 0.010790077439 0.00362974071206 274.501772531 2015-03-21 01:19:31.520000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.471593784253 0.0600981875179 0.025999176165 0.00706958660144 0.00218634154218 456.385079461 2015-03-21 01:19:31.520000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.375343398017 0.157580479855 0.0286422900545 0.0111381194737 0.00474571464057 209.716420126 2015-03-21 01:19:31.520000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.624656601983 0.32456528044 0.0780815279804 0.0307234324532 0.0130889547577 75.4002946388 2015-03-21 01:19:31.520000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.432515488598 0.207915247339 0.0427198102563 0.0148740964076 0.00571738387571 173.905170221 2015-03-21 01:19:31.520000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.567484511402 0.309938992365 0.0768831265923 0.0316599840873 0.0141318855606 69.7619656069 2015-03-21 01:19:31.520000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.884930709419 0.637540014305 0.324060616275 0.149213985302 0.0908415108741 10.0081832675 2015-03-21 01:19:31.520000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2483 Oregon 8 West 0 1 1 1 0.115069290581 0.0475854259261 0.0120987920552 0.00160778544276 0.000361075047823 2768.50735319 2015-03-21 01:19:31.520000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
8 Arkansas 5 West 0 1 1 1 0.326219052096 0.0832853569346 0.0225126241134 0.004732369949 0.00155446074992 642.3099067 2015-03-21 01:19:31.520000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
153 North Carolina 4 West 0 1 1 1 0.673780947904 0.231589202834 0.0806319388756 0.0246538696136 0.0109439738149 90.3744876326 2015-03-21 01:19:31.520000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2752 Xavier 6 West 0 1 1 1 0.695213505689 0.134740613349 0.0402540193072 0.0104897292081 0.00414006295464 240.542220724 2015-03-21 01:19:31.520000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.304786494311 0.0262500279809 0.00400285433989 0.000472830672701 9.61476332146e-05 10399.6720349 2015-03-21 01:19:31.520000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
194 Ohio State 10 West 0 1 1 1 0.194055480537 0.123688839811 0.0425209635448 0.0121683791698 0.00514739710996 193.272945848 2015-03-21 01:19:31.520000
|
||||
12 Arizona 2 West 0 1 1 1 0.805944519463 0.71532051886 0.473918191488 0.182569861762 0.0969547337731 9.31409154648 2015-03-21 01:19:31.520000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567003092077 0.375844542544 0.186602379254 0.0736435752574 12.5789170543 2015-03-21 01:19:31.520000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0653458991603 0.0294022533259 0.00726553112735 0.00137575962938 725.871161683 2015-03-21 01:19:31.520000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
254 Utah 5 South 0 1 1 1 0.709116140418 0.282536222451 0.153582176392 0.0510741413688 0.0130103303026 75.861999407 2015-03-21 01:19:31.520000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
46 Georgetown 4 South 0 1 1 1 0.290883859582 0.0851147863118 0.0373170534973 0.0109244221986 0.00245446189612 406.421276974 2015-03-21 01:19:31.520000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
26 UCLA 11 South 0 1 1 1 0.665651677921 0.172772856764 0.0429963155786 0.00738570358294 0.000958761615856 1042.01213509 2015-03-21 01:19:31.520000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
5 UAB 14 South 0 1 1 1 0.334348322079 0.0410896238461 0.00516811248745 0.000502220365641 3.75668037614e-05 26618.246246 2015-03-21 01:19:31.520000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.204763641467 0.0847395401069 0.0310824176328 0.00894811796339 110.755343871 2015-03-21 01:19:31.520000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.581373877923 0.270950006068 0.0986238914954 0.0274851767349 35.3832479465 2015-03-21 01:19:31.520000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
222 Villanova 1 East 0 1 1 1 0.875217659775 0.737324717624 0.528234078078 0.355688675499 0.16237506835 5.15858093338 2015-03-21 01:19:31.520000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.124782340225 0.0577603393457 0.0189078760726 0.00647398366164 0.00119495432336 835.852070786 2015-03-21 01:19:31.520000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114130235519 0.042900317312 0.0182116817194 0.00442362754961 225.058814578 2015-03-21 01:19:31.520000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0907847075111 0.0330700045321 0.0144815943912 0.00363675590027 273.970338241 2015-03-21 01:19:31.520000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0182535480882 0.00666283596683 0.00133927380145 745.673308265 2015-03-21 01:19:31.520000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.0718161995202 0.0339040539122 0.00937702872442 105.643589285 2015-03-21 01:19:31.520000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.0544686754596 0.0270884747327 0.00807253047218 122.8768938 2015-03-21 01:19:31.520000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.232349300937 0.144027993092 0.0578512116653 16.2857226532 2015-03-21 01:19:31.520000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 01:19:31.520000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-34.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-34.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.831133016283 0.697152989988 0.508648272597 0.372149640525 1.68709113514 2015-03-21 12:24:31.670000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0294842583387 0.0116017266588 0.00338034418799 0.00108768075302 918.387418804 2015-03-21 12:24:31.670000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0814569545224 0.0383368014999 0.0117953183117 0.00396885333876 250.961943323 2015-03-21 12:24:31.670000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0579257708555 0.0249751120187 0.00701208689026 0.00217358505625 459.069412571 2015-03-21 12:24:31.670000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.402112826897 0.176498391136 0.0340536495852 0.0137190009059 0.0058969115999 168.580293525 2015-03-21 12:24:31.670000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.597887173103 0.31118427771 0.0752021680611 0.0303948170838 0.0129796264479 76.0438197132 2015-03-21 12:24:31.670000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.204315668323 0.0420538461256 0.0150352404066 0.00578086825909 171.984395281 2015-03-21 12:24:31.670000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.308001662831 0.0766237060627 0.0322761410854 0.0143934939876 68.4758340719 2015-03-21 12:24:31.670000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.600127475272 0.288936552038 0.12962525072 0.0773510682611 11.9280696761 2015-03-21 12:24:31.670000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0532991495015 0.0134318215898 0.00177873161991 0.00039764088477 2513.83194586 2015-03-21 12:24:31.670000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
8 Arkansas 5 West 0 1 1 1 0.306197840739 0.0860919531699 0.023151243111 0.00487204796334 0.0015997072852 624.11436264 2015-03-21 12:24:31.670000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
153 North Carolina 4 West 0 1 1 1 0.693802159261 0.260481422057 0.0906964763409 0.0276754185401 0.0122440579766 80.6722692681 2015-03-21 12:24:31.670000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2752 Xavier 6 West 0 1 1 1 0.72556421095 0.140279089907 0.0446446700447 0.0115686474568 0.00453753007743 219.384214085 2015-03-21 12:24:31.670000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.27443578905 0.0211736537874 0.00319161059767 0.00035400417544 6.81672605405e-05 14668.7988458 2015-03-21 12:24:31.670000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
194 Ohio State 10 West 0 1 1 1 0.186791192946 0.117653002227 0.0421593233656 0.0119625977926 0.00502045221657 198.18524405 2015-03-21 12:24:31.670000
|
||||
12 Arizona 2 West 0 1 1 1 0.813208807054 0.720894254079 0.493788302913 0.189902080263 0.100600825277 8.94027630731 2015-03-21 12:24:31.670000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567728520271 0.376351473209 0.186953376652 0.0744691767899 12.4283745719 2015-03-21 12:24:31.670000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0654908362922 0.0294699587058 0.007289994947 0.001401372701 712.586042663 2015-03-21 12:24:31.670000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
254 Utah 5 South 0 1 1 1 0.702749521652 0.279908769264 0.152155144915 0.0509433569899 0.0132286990356 74.5932232872 2015-03-21 12:24:31.670000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
46 Georgetown 4 South 0 1 1 1 0.297250478348 0.0868718741723 0.0380619872616 0.0111417616198 0.00253533563748 393.425095131 2015-03-21 12:24:31.670000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
26 UCLA 11 South 0 1 1 1 0.675078463188 0.17451855652 0.0432937943506 0.00741355886448 0.000974907811882 1024.73801114 2015-03-21 12:24:31.670000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
5 UAB 14 South 0 1 1 1 0.324921536812 0.0400369082642 0.00505493159521 0.000493517272729 3.78187644834e-05 26440.9003016 2015-03-21 12:24:31.670000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.20455049892 0.0847180777107 0.0311097473249 0.00906687146849 109.291626332 2015-03-21 12:24:31.670000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.580894036296 0.270894632252 0.0987088250625 0.0278547242621 34.9005528322 2015-03-21 12:24:31.670000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
222 Villanova 1 East 0 1 1 1 0.871761048316 0.734535783377 0.526377993631 0.354412971701 0.163199276372 5.12747814959 2015-03-21 12:24:31.670000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.128238951684 0.0592430018416 0.0193454574366 0.00660284962897 0.00123412636835 809.289793371 2015-03-21 12:24:31.670000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114849264355 0.043151703388 0.0182988913657 0.00450310503239 221.068993019 2015-03-21 12:24:31.670000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0913719504261 0.0332690422526 0.0145536227812 0.00370182682376 269.13689392 2015-03-21 12:24:31.670000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0183310274953 0.00668455375833 0.00136356148168 732.373605396 2015-03-21 12:24:31.670000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.0720425281968 0.0339841054176 0.00951526332958 104.094306417 2015-03-21 12:24:31.670000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.0546316973197 0.0271491983207 0.00818561656008 121.165507346 2015-03-21 12:24:31.670000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.23285055028 0.144259668293 0.0584782083543 16.1003871039 2015-03-21 12:24:31.670000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 12:24:31.670000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-35.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-35.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 0.935452437564 0.831133016283 0.697152989988 0.508648272597 0.372247076147 1.6863877894 2015-03-21 14:23:49.760000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2132 Cincinnati 8 Midwest 0 1 1 1 0.0645475624357 0.0294842583387 0.0116017266588 0.00338034418799 0.00108924367619 917.068217296 2015-03-21 14:23:49.760000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0814569545224 0.0383368014999 0.0117953183117 0.00397425664841 250.619381551 2015-03-21 14:23:49.760000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0579257708555 0.0249751120187 0.00701208689026 0.00217684718184 458.379973174 2015-03-21 14:23:49.760000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.402112826897 0.176498391136 0.0340536495852 0.0137190009059 0.00590262189906 168.416238597 2015-03-21 14:23:49.760000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.597887173103 0.31118427771 0.0752021680611 0.0303948170838 0.0129923253353 75.9685159657 2015-03-21 14:23:49.760000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.204315668323 0.0420538461256 0.0150352404066 0.00578747496987 171.786924385 2015-03-21 14:23:49.760000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.308001662831 0.0766237060627 0.0322761410854 0.0144066279893 68.4124954671 2015-03-21 14:23:49.760000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.600127475272 0.288936552038 0.12962525072 0.0773900958993 11.9215500818 2015-03-21 14:23:49.760000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0532991495015 0.0134318215898 0.00177873161991 0.000398471913091 2508.58716825 2015-03-21 14:23:49.760000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
8 Arkansas 5 West 0 1 1 1 0.306197840739 0.0860919531699 0.023151243111 0.00487204796334 0.0016019510645 623.238793657 2015-03-21 14:23:49.760000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
153 North Carolina 4 West 0 1 1 1 0.693802159261 0.260481422057 0.0906964763409 0.0276754185401 0.012255377483 80.5968338299 2015-03-21 14:23:49.760000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2752 Xavier 6 West 0 1 1 1 0.72556421095 0.140279089907 0.0446446700447 0.0115686474568 0.00454257173746 219.139616454 2015-03-21 14:23:49.760000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.27443578905 0.0211736537874 0.00319161059767 0.00035400417544 6.8329163587e-05 14634.0393815 2015-03-21 14:23:49.760000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
194 Ohio State 10 West 0 1 1 1 0.186791192946 0.117653002227 0.0421593233656 0.0119625977926 0.00502549838232 197.985239657 2015-03-21 14:23:49.760000
|
||||
12 Arizona 2 West 0 1 1 1 0.813208807054 0.720894254079 0.493788302913 0.189902080263 0.100667578634 8.93368484241 2015-03-21 14:23:49.760000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567728520271 0.377250753019 0.187291038389 0.0745526436277 12.4133405784 2015-03-21 14:23:49.760000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0654908362922 0.0294635319644 0.00728843099133 0.00140107745623 712.736414468 2015-03-21 14:23:49.760000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
254 Utah 5 South 0 1 1 1 0.702749521652 0.279908769264 0.152377683114 0.0509937294159 0.0132347665575 74.5585673276 2015-03-21 14:23:49.760000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
46 Georgetown 4 South 0 1 1 1 0.297250478348 0.0868718741723 0.0380425212864 0.0111363707772 0.00253418604806 393.604019214 2015-03-21 14:23:49.760000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0714249728314 0.0130144444081 0.00182892305781 545.769857665 2015-03-21 14:23:49.760000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0782586976993 0.0290177745945 0.00854952703164 115.96553462 2015-03-21 14:23:49.760000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.253181840086 0.0928751296839 0.0264083148119 36.8668615216 2015-03-21 14:23:49.760000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
222 Villanova 1 East 0 1 1 1 0.871761048316 0.734535783377 0.526377993631 0.355582598321 0.163641863956 5.11090570486 2015-03-21 14:23:49.760000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.128238951684 0.0592430018416 0.0193454574366 0.00665877240611 0.00124265732841 803.727077318 2015-03-21 14:23:49.760000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114849264355 0.043151703388 0.0184251057024 0.00452832508167 219.832202186 2015-03-21 14:23:49.760000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0913719504261 0.0332690422526 0.0146506358375 0.00372194953331 267.676399572 2015-03-21 14:23:49.760000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0183310274953 0.00673802057359 0.00137243377844 727.6326056 2015-03-21 14:23:49.760000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.0720425281968 0.0341913414721 0.00956267388114 103.573261875 2015-03-21 14:23:49.760000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.0546316973197 0.0273039634302 0.00822355368425 120.601930065 2015-03-21 14:23:49.760000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.23285055028 0.144832643998 0.0586707560422 16.0442664703 2015-03-21 14:23:49.760000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 14:23:49.760000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-36.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-36.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.735539521545 0.530495605481 0.383841837592 1.60523971611 2015-03-21 17:21:42.230000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0329131512775 0.0103656958959 0.00357040408936 279.080342441 2015-03-21 17:21:42.230000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0210102148915 0.00605794444764 0.00192846045254 517.548357412 2015-03-21 17:21:42.230000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.402112826897 0.176498391136 0.0310480427875 0.0126270375002 0.00548163313739 181.427385222 2015-03-21 17:21:42.230000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.597887173103 0.31118427771 0.069742824449 0.0284294269531 0.0122512668562 80.6242117437 2015-03-21 17:21:42.230000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.204315668323 0.0385330516223 0.0139148560125 0.00540715138509 183.940263141 2015-03-21 17:21:42.230000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.308001662831 0.0712131934274 0.0302469273943 0.0136075916196 72.4883900073 2015-03-21 17:21:42.230000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.600127475272 0.288936552038 0.126940606161 0.075967463445 12.1635302095 2015-03-21 17:21:42.230000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0532991495015 0.0134318215898 0.00166453194468 0.000375407266893 2662.77368844 2015-03-21 17:21:42.230000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
8 Arkansas 5 West 0 1 1 1 0.306197840739 0.0860919531699 0.023151243111 0.00463896522284 0.00153351485232 651.096716563 2015-03-21 17:21:42.230000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
153 North Carolina 4 West 0 1 1 1 0.693802159261 0.260481422057 0.0906964763409 0.0267232550399 0.0118807959643 83.1694447921 2015-03-21 17:21:42.230000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2752 Xavier 6 West 0 1 1 1 0.72556421095 0.140279089907 0.0446446700447 0.0111021718287 0.00437972967299 227.324594134 2015-03-21 17:21:42.230000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.27443578905 0.0211736537874 0.00319161059767 0.000329135806723 6.39856341428e-05 15627.5080768 2015-03-21 17:21:42.230000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
194 Ohio State 10 West 0 1 1 1 0.186791192946 0.117653002227 0.0421593233656 0.0115195666411 0.00486021792436 204.752090865 2015-03-21 17:21:42.230000
|
||||
12 Arizona 2 West 0 1 1 1 0.813208807054 0.720894254079 0.493788302913 0.184944273671 0.0983331252516 9.16951304499 2015-03-21 17:21:42.230000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567728520271 0.377250753019 0.187291038389 0.0739955743896 12.5143217449 2015-03-21 17:21:42.230000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0654908362922 0.0294635319644 0.00728843099133 0.00137717510723 725.12407438 2015-03-21 17:21:42.230000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
254 Utah 5 South 0 1 1 1 0.702749521652 0.279908769264 0.152377683114 0.0509937294159 0.0130622352215 75.5565757345 2015-03-21 17:21:42.230000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
46 Georgetown 4 South 0 1 1 1 0.297250478348 0.0868718741723 0.0380425212864 0.0111363707772 0.00249669904811 399.528850586 2015-03-21 17:21:42.230000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0714249728314 0.0130144444081 0.00178999501086 557.660774993 2015-03-21 17:21:42.230000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0782586976993 0.0290177745945 0.00845242990798 117.309173916 2015-03-21 17:21:42.230000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.253181840086 0.0928751296839 0.0260960144434 37.3200278406 2015-03-21 17:21:42.230000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
222 Villanova 1 East 0 1 1 1 0.871761048316 0.734535783377 0.526377993631 0.355582598321 0.162712561768 5.14580699323 2015-03-21 17:21:42.230000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.128238951684 0.0592430018416 0.0193454574366 0.00665877240611 0.00122096141406 818.026701815 2015-03-21 17:21:42.230000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114849264355 0.043151703388 0.0184251057024 0.00446600302688 222.913865258 2015-03-21 17:21:42.230000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0913719504261 0.0332690422526 0.0146506358375 0.00367236981532 271.303730367 2015-03-21 17:21:42.230000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0183310274953 0.00673802057359 0.00135008921216 739.691793543 2015-03-21 17:21:42.230000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.0720425281968 0.0341913414721 0.00944749771139 104.848133606 2015-03-21 17:21:42.230000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.0546316973197 0.0273039634302 0.00813253858897 121.96283492 2015-03-21 17:21:42.230000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.23285055028 0.144832643998 0.0582452701904 16.1687760522 2015-03-21 17:21:42.230000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 17:21:42.230000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-37.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-37.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.735539521545 0.522079798441 0.377996945102 1.64552402594 2015-03-21 20:11:29.410000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0329131512775 0.00989598476226 0.00342031937388 291.370358054 2015-03-21 20:11:29.410000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0210102148915 0.00576648909357 0.00184247862745 541.747136982 2015-03-21 20:11:29.410000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.402112826897 0.176498391136 0.0310480427875 0.012160648413 0.00529320462243 187.921470325 2015-03-21 20:11:29.410000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.597887173103 0.31118427771 0.069742824449 0.0273815729515 0.0118299521234 83.5311958635 2015-03-21 20:11:29.410000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.204315668323 0.0385330516223 0.013345932929 0.00520161947501 191.247819127 2015-03-21 20:11:29.410000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.308001662831 0.0712131934274 0.0291741854267 0.0131577242858 75.0009845382 2015-03-21 20:11:29.410000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.600127475272 0.248979175661 0.110501172303 0.0666434192397 14.0052324957 2015-03-21 20:11:29.410000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0532991495015 0.0103268771034 0.00131079176894 0.000301882450098 3311.54764786 2015-03-21 20:11:29.410000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
8 Arkansas 5 West 0 1 1 1 0.306197840739 0.0860919531699 0.0179941421403 0.00367867294767 0.00123686771766 807.493896091 2015-03-21 20:11:29.410000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
153 North Carolina 4 West 0 1 1 1 0.693802159261 0.260481422057 0.0737040183248 0.0220579699247 0.00993193302662 99.685334599 2015-03-21 20:11:29.410000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2752 Xavier 6 West 0 1 1 1 0.72556421095 0.0981876152208 0.0320820101006 0.00820685628989 0.00331371289605 300.77629486 2015-03-21 20:11:29.410000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.27443578905 0.0119902417125 0.00189155201458 0.000204636289497 4.14973518134e-05 24096.9232722 2015-03-21 20:11:29.410000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.889822143067 0.615022224656 0.234235288459 0.126190007663 6.92455772467 2015-03-21 20:11:29.410000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567728520271 0.377250753019 0.187291038389 0.0734399086929 12.6165746635 2015-03-21 20:11:29.410000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0654908362922 0.0294635319644 0.00728843099133 0.00135639648097 736.24756296 2015-03-21 20:11:29.410000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
254 Utah 5 South 0 1 1 1 0.702749521652 0.279908769264 0.152377683114 0.0509937294159 0.0129069615041 76.4775689603 2015-03-21 20:11:29.410000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
46 Georgetown 4 South 0 1 1 1 0.297250478348 0.0868718741723 0.0380425212864 0.0111363707772 0.00246354522131 404.919076034 2015-03-21 20:11:29.410000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0714249728314 0.0130144444081 0.0017568813017 568.190416581 2015-03-21 20:11:29.410000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0782586976993 0.0290177745945 0.00836314999169 118.572170892 2015-03-21 20:11:29.410000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.253181840086 0.0928751296839 0.0258107345531 37.7435699647 2015-03-21 20:11:29.410000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
222 Villanova 1 East 0 1 1 1 0.871761048316 0.734535783377 0.526377993631 0.355582598321 0.161720867582 5.18349391114 2015-03-21 20:11:29.410000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
152 North Carolina State 8 East 0 1 1 1 0.128238951684 0.0592430018416 0.0193454574366 0.00665877240611 0.00120214893109 830.843687701 2015-03-21 20:11:29.410000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.114849264355 0.043151703388 0.0184251057024 0.00441034736162 225.739510067 2015-03-21 20:11:29.410000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.0913719504261 0.0332690422526 0.0146506358375 0.00362788882245 274.642404974 2015-03-21 20:11:29.410000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0183310274953 0.00673802057359 0.00133056042582 750.563011042 2015-03-21 20:11:29.410000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.0720425281968 0.0341913414721 0.0093425909198 106.036689135 2015-03-21 20:11:29.410000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.0546316973197 0.0273039634302 0.00804849018681 123.246905542 2015-03-21 20:11:29.410000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.23285055028 0.144832643998 0.0578179640698 16.2956626213 2015-03-21 20:11:29.410000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 20:11:29.410000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-38.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-38.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.735539521545 0.522079798441 0.407278304408 1.45532352001 2015-03-21 21:34:39.270000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0329131512775 0.00989598476226 0.00408263452878 243.939877168 2015-03-21 21:34:39.270000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0210102148915 0.00576648909357 0.00221855450667 449.743940251 2015-03-21 21:34:39.270000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.402112826897 0.176498391136 0.0310480427875 0.012160648413 0.00614709466159 161.678477403 2015-03-21 21:34:39.270000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.597887173103 0.31118427771 0.069742824449 0.0273815729515 0.013751188314 71.7209879734 2015-03-21 21:34:39.270000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.204315668323 0.0385330516223 0.013345932929 0.00612291515566 162.320897739 2015-03-21 21:34:39.270000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.308001662831 0.0712131934274 0.0291741854267 0.0152116683817 64.7390086943 2015-03-21 21:34:39.270000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.600127475272 0.248979175661 0.110501172303 0.0739916026504 12.5150471699 2015-03-21 21:34:39.270000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0532991495015 0.0103268771034 0.00131079176894 0.000375961311012 2658.84815647 2015-03-21 21:34:39.270000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
8 Arkansas 5 West 0 1 1 1 0.306197840739 0.0860919531699 0.0179941421403 0.00367867294767 0.00148095822629 674.238492382 2015-03-21 21:34:39.270000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
153 North Carolina 4 West 0 1 1 1 0.693802159261 0.260481422057 0.0737040183248 0.0220579699247 0.0114847393212 86.0720677265 2015-03-21 21:34:39.270000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2752 Xavier 6 West 0 1 1 1 0.72556421095 0.0981876152208 0.0320820101006 0.00820685628989 0.00388410128796 256.459815248 2015-03-21 21:34:39.270000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.27443578905 0.0119902417125 0.00189155201458 0.000204636289497 5.23094425737e-05 19116.0073852 2015-03-21 21:34:39.270000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.889822143067 0.615022224656 0.234235288459 0.1424447204 6.02026721095 2015-03-21 21:34:39.270000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567728520271 0.377250753019 0.232664570713 0.0900502335816 10.1049128939 2015-03-21 21:34:39.270000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0654908362922 0.0294635319644 0.0104332319258 0.00189818349506 525.819457973 2015-03-21 21:34:39.270000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
254 Utah 5 South 0 1 1 1 0.702749521652 0.279908769264 0.152377683114 0.0689563434746 0.0171288230065 57.3811275076 2015-03-21 21:34:39.270000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
46 Georgetown 4 South 0 1 1 1 0.297250478348 0.0868718741723 0.0380425212864 0.0154548539681 0.00334868238875 297.624916881 2015-03-21 21:34:39.270000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0714249728314 0.0196308155446 0.00258369116563 386.043162628 2015-03-21 21:34:39.270000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0782586976993 0.0384334754147 0.0108771303 90.9360136745 2015-03-21 21:34:39.270000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.253181840086 0.12328366434 0.0336781814869 28.692814631 2015-03-21 21:34:39.270000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.451605387697 0.143363894127 0.0480184744152 0.0083570737636 118.659108952 2015-03-21 21:34:39.270000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.303393298942 0.109562285756 0.0451269613325 0.0102741946504 96.3312297486 2015-03-21 21:34:39.270000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.245001313361 0.0857234381964 0.0364675976821 0.00860262406798 115.243601034 2015-03-21 21:34:39.270000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0399542966557 0.0142980569539 0.0027228574492 366.261238848 2015-03-21 21:34:39.270000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.137140643718 0.0635812814405 0.0168013217747 58.5191267336 2015-03-21 21:34:39.270000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.101762567373 0.0497129601268 0.0141793885566 69.5249028198 2015-03-21 21:34:39.270000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.382492874175 0.233937712668 0.0909708617173 9.99253080736 2015-03-21 21:34:39.270000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 21:34:39.270000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-39.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-39.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.735539521545 0.521589520998 0.406912913739 1.45752829718 2015-03-21 23:22:43.630000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0329131512775 0.00985121876549 0.00406660846494 244.905158714 2015-03-21 23:22:43.630000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0210102148915 0.00573781547795 0.00220901218193 451.691030036 2015-03-21 23:22:43.630000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.402112826897 0.176498391136 0.0310480427875 0.0121206432936 0.00612937713379 162.14871449 2015-03-21 23:22:43.630000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.597887173103 0.31118427771 0.069742824449 0.0272917871747 0.0137113653865 71.9321968899 2015-03-21 23:22:43.630000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.204315668323 0.0385330516223 0.0132945400653 0.00610231503646 162.872234394 2015-03-21 23:22:43.630000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.308001662831 0.0712131934274 0.0290840240411 0.0151702741347 64.9183869137 2015-03-21 23:22:43.630000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.579044980553 0.241339419896 0.107567085507 0.0722250006671 12.8456211944 2015-03-21 23:22:43.630000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0496030201398 0.00970479444503 0.0012455621011 0.000360384932684 2773.81079065 2015-03-21 23:22:43.630000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.371351999307 0.103757574656 0.0306810509933 0.0158386811291 62.1365700116 2015-03-21 23:22:43.630000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2752 Xavier 6 West 0 1 1 1 0.72556421095 0.0981876152208 0.0315277793119 0.00808826770841 0.00383591056965 259.694294573 2015-03-21 23:22:43.630000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2247 Georgia State 14 West 0 1 1 1 0.27443578905 0.0119902417125 0.00183534036348 0.000199546223955 5.12112819704e-05 19525.947218 2015-03-21 23:22:43.630000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.889822143067 0.611835091327 0.23324893765 0.141938242582 6.04531761003 2015-03-21 23:22:43.630000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.567728520271 0.377250753019 0.232664570713 0.0900499609171 10.1049465188 2015-03-21 23:22:43.630000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0654908362922 0.0294635319644 0.0104332319258 0.00189750457569 526.007951819 2015-03-21 23:22:43.630000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
254 Utah 5 South 0 1 1 1 0.702749521652 0.279908769264 0.152377683114 0.0689563434746 0.0171257695264 57.3915367107 2015-03-21 23:22:43.630000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
46 Georgetown 4 South 0 1 1 1 0.297250478348 0.0868718741723 0.0380425212864 0.0154548539681 0.00334784032043 297.700028761 2015-03-21 23:22:43.630000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0714249728314 0.0196308155446 0.00258216524795 386.271883856 2015-03-21 23:22:43.630000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0782586976993 0.0384334754147 0.0108758613337 90.9467405221 2015-03-21 23:22:43.630000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.253181840086 0.12328366434 0.033673717174 28.6967511734 2015-03-21 23:22:43.630000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.451605387697 0.143363894127 0.0480184744152 0.0083538408354 118.70541691 2015-03-21 23:22:43.630000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.303393298942 0.109562285756 0.0451269613325 0.01027189396 96.3530299181 2015-03-21 23:22:43.630000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.245001313361 0.0857234381964 0.0364675976821 0.00860086139503 115.267424165 2015-03-21 23:22:43.630000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0399542966557 0.0142980569539 0.00272196279066 366.381950786 2015-03-21 23:22:43.630000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.137140643718 0.0635812814405 0.016798834539 58.5279391364 2015-03-21 23:22:43.630000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.101762567373 0.0497129601268 0.0141777828143 69.5328903041 2015-03-21 23:22:43.630000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.382492874175 0.233937712668 0.0909707073309 9.99254946279 2015-03-21 23:22:43.630000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:22:43.630000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-40.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-40.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.735539521545 0.521977242277 0.407249049505 1.45549989918 2015-03-21 23:44:25.480000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0329131512775 0.00987374414297 0.00407467075416 244.418601976 2015-03-21 23:44:25.480000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0210102148915 0.00575172318409 0.00221357435693 450.758034182 2015-03-21 23:44:25.480000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2086 Butler 6 Midwest 0 1 1 1 0.402112826897 0.176498391136 0.0310480427875 0.0121431855899 0.00613981749558 161.871290673 2015-03-21 23:44:25.480000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 0.597887173103 0.31118427771 0.069742824449 0.0273424347914 0.0137346987825 71.8082949497 2015-03-21 23:44:25.480000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.204315668323 0.0385330516223 0.0133219743247 0.00611354640605 162.571180062 2015-03-21 23:44:25.480000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.308001662831 0.0712131934274 0.0291358833673 0.0151953029773 64.8098098798 2015-03-21 23:44:25.480000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.579044980553 0.244798332317 0.108976429261 0.0731264850948 12.6749359511 2015-03-21 23:44:25.480000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0496030201398 0.00994250184499 0.0012736163416 0.000367874283117 2717.31994215 2015-03-21 23:44:25.480000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.371351999307 0.10584617399 0.0312474397858 0.0161142003682 61.0570662616 2015-03-21 23:44:25.480000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0413826723809 0.0103981076936 0.00485825905893 204.83505076 2015-03-21 23:44:25.480000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.598030319467 0.22855821924 0.139341147901 6.17663098853 2015-03-21 23:44:25.480000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.540844447124 0.360475333401 0.223072738846 0.0868298367254 10.5167785373 2015-03-21 23:44:25.480000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0601403274106 0.027230639964 0.00971643387682 0.00178701967116 558.590930161 2015-03-21 23:44:25.480000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
254 Utah 5 South 0 1 1 1 1 0.399015225465 0.217507455239 0.0985870134346 0.0245547435862 39.7253285496 2015-03-21 23:44:25.480000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0692611472699 0.0191010556687 0.00252618884778 394.853224068 2015-03-21 23:44:25.480000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0767068462047 0.0377419603895 0.0107145442234 92.3310814857 2015-03-21 23:44:25.480000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.248818577922 0.121347916955 0.0332377367002 29.0862844248 2015-03-21 23:44:25.480000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.451605387697 0.143363894127 0.0478851316749 0.00834349344627 118.853872534 2015-03-21 23:44:25.480000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.303393298942 0.109562285756 0.045033980049 0.0102631316699 96.4361464082 2015-03-21 23:44:25.480000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.245001313361 0.0857234381964 0.0363964013567 0.00859387977917 115.361879116 2015-03-21 23:44:25.480000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0399542966557 0.0142616923976 0.00271895826153 366.787918685 2015-03-21 23:44:25.480000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.137140643718 0.0634750766581 0.0167875387766 58.5679934568 2015-03-21 23:44:25.480000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.101762567373 0.0496382178156 0.0141696199012 69.5735232825 2015-03-21 23:44:25.480000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.382492874175 0.233742380877 0.0909446814279 9.99569523253 2015-03-21 23:44:25.480000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-21 23:44:25.480000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-41.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-41.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.732900210884 0.520561394849 0.406421261756 1.46050119445 2015-03-22 00:28:05.060000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0325325291647 0.00980313890814 0.00406007141471 245.301086325 2015-03-22 00:28:05.060000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0207447411245 0.00570633392142 0.00220462662063 452.591547268 2015-03-22 00:28:05.060000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.501598319242 0.105914564198 0.0396099195832 0.0191575993523 51.1986070179 2015-03-22 00:28:05.060000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.198242480174 0.0378119016881 0.0131916154607 0.00609783495736 162.992631318 2015-03-22 00:28:05.060000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.300159200583 0.0700960529403 0.0289007869303 0.0151653274884 64.9398882593 2015-03-22 00:28:05.060000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.579044980553 0.244798332317 0.109385143633 0.0734064771422 12.6227760673 2015-03-22 00:28:05.060000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0496030201398 0.00994250184499 0.00128886303517 0.000372472332287 2683.76317116 2015-03-22 00:28:05.060000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.371351999307 0.10584617399 0.0314461995319 0.0162196819033 60.6534902448 2015-03-22 00:28:05.060000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0413826723809 0.010475364635 0.00489561688329 203.264349895 2015-03-22 00:28:05.060000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.598030319467 0.229631239512 0.140010756414 6.14230838837 2015-03-22 00:28:05.060000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.540844447124 0.360475333401 0.223072738846 0.08693927425 10.502281433 2015-03-22 00:28:05.060000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0601403274106 0.027230639964 0.00971643387682 0.00179214439239 556.99075356 2015-03-22 00:28:05.060000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
254 Utah 5 South 0 1 1 1 1 0.399015225465 0.217507455239 0.0985870134346 0.0246085187733 39.6363344829 2015-03-22 00:28:05.060000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0692611472699 0.0191010556687 0.00253537008772 393.419735739 2015-03-22 00:28:05.060000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0767068462047 0.0377419603895 0.0107349857532 92.1533607024 2015-03-22 00:28:05.060000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.248818577922 0.121347916955 0.0333036915024 29.0267013922 2015-03-22 00:28:05.060000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.451605387697 0.143363894127 0.0478851316749 0.00836845334937 118.496394166 2015-03-22 00:28:05.060000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.548320953166 0.303393298942 0.109562285756 0.045033980049 0.0102876126472 96.204281916 2015-03-22 00:28:05.060000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
97 Louisville 4 East 0 1 1 1 0.451679046834 0.245001313361 0.0857234381964 0.0363964013567 0.00861370635515 115.094043466 2015-03-22 00:28:05.060000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0399542966557 0.0142616923976 0.00272653298625 365.76614772 2015-03-22 00:28:05.060000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.137140643718 0.0634750766581 0.016822116327 58.4455525428 2015-03-22 00:28:05.060000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.101762567373 0.0496382178156 0.0141964870185 69.4399615693 2015-03-22 00:28:05.060000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.382492874175 0.233742380877 0.0910593802921 9.9818449982 2015-03-22 00:28:05.060000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 00:28:05.060000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-42.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-42.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.732900210884 0.520559749608 0.406439318242 1.46039188414 2015-03-22 12:22:20.490000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0325325291647 0.00982128691626 0.0040677681734 244.835051894 2015-03-22 12:22:20.490000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0207447411245 0.00571844134767 0.00220938571792 451.614494558 2015-03-22 12:22:20.490000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.501598319242 0.105914564198 0.0396597096656 0.0191830712284 51.1292960909 2015-03-22 12:22:20.490000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.198242480174 0.0378119016881 0.013210620678 0.0061069614668 162.747553581 2015-03-22 12:22:20.490000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.300159200583 0.0700960529403 0.0289300346003 0.0151815877172 64.8692633885 2015-03-22 12:22:20.490000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.617631940936 0.259825148259 0.115564867238 0.0773266285332 11.9321557007 2015-03-22 12:22:20.490000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0559751865997 0.011115606638 0.00142566272514 0.000408712568621 2445.70723823 2015-03-22 12:22:20.490000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.326392872465 0.0810676895537 0.0222330691501 0.0108662201645 91.0283212431 2015-03-22 12:22:20.490000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0429281646392 0.0108299534761 0.00504992411665 197.022777551 2015-03-22 12:22:20.490000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.60506339091 0.232046604595 0.141380031092 6.07313467309 2015-03-22 12:22:20.490000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.544103751647 0.362553016838 0.224385433098 0.0873640428244 10.4463567352 2015-03-22 12:22:20.490000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0607363046523 0.0274869449946 0.00981153238695 0.00180714221077 552.359881717 2015-03-22 12:22:20.490000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
254 Utah 5 South 0 1 1 1 1 0.3951599437 0.213926734707 0.0966511776406 0.0239825188794 40.6970379563 2015-03-22 12:22:20.490000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0695753843948 0.0192047606105 0.00254662401866 391.676733068 2015-03-22 12:22:20.490000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0769478616738 0.0378773317372 0.0107640033778 91.9022376625 2015-03-22 12:22:20.490000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.249510057392 0.121743057364 0.0333839580782 28.954506822 2015-03-22 12:22:20.490000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.456903418681 0.14494085375 0.0484096563725 0.00844697861808 117.385525194 2015-03-22 12:22:20.490000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.534403279769 0.290887090821 0.102788368108 0.0419002203678 0.00945920405541 104.717140062 2015-03-22 12:22:20.490000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
97 Louisville 4 East 0 1 1 1 0.465596720231 0.252209490498 0.0880782495578 0.0373530584564 0.00881425748281 112.452551386 2015-03-22 12:22:20.490000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.0880494645874 0.0402276279989 0.0143627420063 0.00274276419695 363.595688216 2015-03-22 12:22:20.490000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.229739044588 0.137848119242 0.0638134295191 0.0168947950294 58.1898272964 2015-03-22 12:22:20.490000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
127 Michigan State 7 East 0 1 1 1 0.279089940142 0.164393147558 0.102262100895 0.0498891844971 0.0142541563162 69.1549764026 2015-03-22 12:22:20.490000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
258 Virginia 2 East 0 1 1 1 0.720910059858 0.517818343267 0.383854680448 0.234598415944 0.091319945891 9.95051021158 2015-03-22 12:22:20.490000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 12:22:20.490000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-43.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-43.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.732900210884 0.520559749608 0.419822696566 1.38195792695 2015-03-22 14:59:35.010000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0325325291647 0.00982128691626 0.00439831520977 226.359784897 2015-03-22 14:59:35.010000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0207447411245 0.00571844134767 0.00239805044409 416.005406397 2015-03-22 14:59:35.010000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.501598319242 0.105914564198 0.0396597096656 0.0205532609938 47.6540797736 2015-03-22 14:59:35.010000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.198242480174 0.0378119016881 0.013210620678 0.00656126858353 151.409551182 2015-03-22 14:59:35.010000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.300159200583 0.0700960529403 0.0289300346003 0.0161815882872 60.7986307803 2015-03-22 14:59:35.010000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.617631940936 0.259825148259 0.115564867238 0.080974888005 11.3495076639 2015-03-22 14:59:35.010000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0559751865997 0.011115606638 0.00142566272514 0.000450225942789 2220.1070153 2015-03-22 14:59:35.010000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.326392872465 0.0810676895537 0.0222330691501 0.0116348441516 84.9487232461 2015-03-22 14:59:35.010000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0429281646392 0.0108299534761 0.00542276917048 183.407628015 2015-03-22 14:59:35.010000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.60506339091 0.232046604595 0.149130767081 5.70552441708 2015-03-22 14:59:35.010000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
150 Duke 1 South 0 1 1 1 0.84953136715 0.544103751647 0.362553016838 0.247299892844 0.0955058456577 9.47056327404 2015-03-22 14:59:35.010000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
21 San Diego State 8 South 0 1 1 1 0.15046863285 0.0607363046523 0.0274869449946 0.0114217502148 0.00207990185072 479.791917971 2015-03-22 14:59:35.010000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
254 Utah 5 South 0 1 1 1 1 0.3951599437 0.213926734707 0.110259065663 0.0270767789565 35.9320147572 2015-03-22 14:59:35.010000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0695753843948 0.0227729617106 0.00298439832014 334.075915722 2015-03-22 14:59:35.010000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0769478616738 0.0428490708691 0.0120525400897 81.9700621243 2015-03-22 14:59:35.010000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.249510057392 0.137845848299 0.0374323656019 25.7148491398 2015-03-22 14:59:35.010000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.456903418681 0.177813468956 0.0586577360348 0.0100675580868 98.3289526003 2015-03-22 14:59:35.010000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.534403279769 0.290887090821 0.124651748326 0.050256021969 0.0111749737946 88.4856684573 2015-03-22 14:59:35.010000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
97 Louisville 4 East 0 1 1 1 0.465596720231 0.252209490498 0.106951321896 0.04488112202 0.0104364580851 94.8179481819 2015-03-22 14:59:35.010000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.120566189905 0.0542288577228 0.0190127653114 0.00354316363226 281.233648736 2015-03-22 14:59:35.010000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.294206376017 0.174525524848 0.0796126698562 0.0206427728036 47.4431044954 2015-03-22 14:59:35.010000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.585227434078 0.361829078251 0.175131095209 0.049474568686 19.2124046062 2015-03-22 14:59:35.010000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 14:59:35.010000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-44.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-44.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.732900210884 0.520559749608 0.412942557857 1.42164432067 2015-03-22 17:00:56.500000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0325325291647 0.00982128691626 0.00423272371675 235.254494014 2015-03-22 17:00:56.500000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.0207447411245 0.00571844134767 0.00230366279118 433.091310512 2015-03-22 17:00:56.500000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.501598319242 0.105914564198 0.0396597096656 0.0198643839056 49.3413548968 2015-03-22 17:00:56.500000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 0.430431822267 0.198242480174 0.0378119016881 0.013210620678 0.00633312208742 156.900003537 2015-03-22 17:00:56.500000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2305 Kansas 2 Midwest 0 1 1 1 0.569568177733 0.300159200583 0.0700960529403 0.0289300346003 0.0156776669882 62.7850007119 2015-03-22 17:00:56.500000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.617631940936 0.259825148259 0.115564867238 0.079118605232 11.6392521338 2015-03-22 17:00:56.500000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0559751865997 0.011115606638 0.00142566272514 0.000429547915 2327.02899299 2015-03-22 17:00:56.500000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.326392872465 0.0810676895537 0.0222330691501 0.0112483040865 87.9022907195 2015-03-22 17:00:56.500000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0429281646392 0.0108299534761 0.00523549211921 190.004012083 2015-03-22 17:00:56.500000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.60506339091 0.232046604595 0.145204238215 5.8868513226 2015-03-22 17:00:56.500000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.445978102592 0.310483038901 0.124493292499 7.03256127242 2015-03-22 17:00:56.500000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.187680138034 0.097363962994 0.0241600030456 40.3907232591 2015-03-22 17:00:56.500000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0626596295069 0.0206044820766 0.00271794917032 366.924467065 2015-03-22 17:00:56.500000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0711767743317 0.0397434436163 0.0112286597739 88.0578234749 2015-03-22 17:00:56.500000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.232505355536 0.128761915527 0.0351045080685 27.4863698431 2015-03-22 17:00:56.500000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.456903418681 0.177813468956 0.0546702337294 0.00941910935114 105.167150494 2015-03-22 17:00:56.500000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.534403279769 0.290887090821 0.124651748326 0.047222233019 0.0105361439467 93.91138362 2015-03-22 17:00:56.500000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
97 Louisville 4 East 0 1 1 1 0.465596720231 0.252209490498 0.106951321896 0.0422449657158 0.00985536271939 100.46759977 2015-03-22 17:00:56.500000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2168 Dayton 11b East 1 1 1 1 0.375138399829 0.120566189905 0.0542288577228 0.0177625130199 0.0033225183594 299.976515952 2015-03-22 17:00:56.500000
|
||||
201 Oklahoma 3 East 0 1 1 1 0.624861600171 0.294206376017 0.174525524848 0.0752180158642 0.0195619670208 50.1196036134 2015-03-22 17:00:56.500000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.585227434078 0.361829078251 0.165925195537 0.0470101811314 20.2719878106 2015-03-22 17:00:56.500000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 17:00:56.500000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-45.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-45.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.740548840296 0.525762164601 0.416494588422 1.4009915802 2015-03-22 20:55:06.210000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0334466561374 0.0100762500906 0.00431985001062 230.489518743 2015-03-22 20:55:06.210000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.021371238933 0.0058780477824 0.00235462281515 423.696470945 2015-03-22 20:55:06.210000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.527441397872 0.110869569148 0.0413665598106 0.0205992961966 47.5453478826 2015-03-22 20:55:06.210000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 1 0.472558602128 0.093763695486 0.0338070333222 0.0165570777262 59.3971314586 2015-03-22 20:55:06.210000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
275 Wisconsin 1 West 0 1 1 1 0.868972295068 0.617631940936 0.259825148259 0.115775669502 0.0791205470834 11.6389419293 2015-03-22 20:55:06.210000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2483 Oregon 8 West 0 1 1 1 0.131027704932 0.0559751865997 0.011115606638 0.00144143308278 0.000431614562452 2315.88197525 2015-03-22 20:55:06.210000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.326392872465 0.0810676895537 0.0223412687957 0.0112647891083 87.7721900858 2015-03-22 20:55:06.210000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0429281646392 0.0108892882564 0.00524486986006 189.662500058 2015-03-22 20:55:06.210000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.60506339091 0.232662284757 0.145261137387 5.88415372473 2015-03-22 20:55:06.210000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.445978102592 0.308372491803 0.123721305321 7.08268226239 2015-03-22 20:55:06.210000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.187680138034 0.0962981885093 0.0239380079714 40.7745704319 2015-03-22 20:55:06.210000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0626596295069 0.0202647725489 0.00268308845402 371.704820261 2015-03-22 20:55:06.210000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0711767743317 0.039347436466 0.0111344629172 88.811247066 2015-03-22 20:55:06.210000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.232505355536 0.127464575653 0.0348010734947 27.7347457875 2015-03-22 20:55:06.210000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.456903418681 0.17167992632 0.0530502536104 0.00920129801844 107.680318581 2015-03-22 20:55:06.210000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.534403279769 0.290887090821 0.120739659577 0.0459355575402 0.0103055501213 96.0350915996 2015-03-22 20:55:06.210000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
97 Louisville 4 East 0 1 1 1 0.465596720231 0.252209490498 0.103558346601 0.041070946574 0.00963162900569 102.824597003 2015-03-22 20:55:06.210000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.267750055813 0.112576114165 0.0283095085599 34.3238205419 2015-03-22 20:55:06.210000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.336272011688 0.15561966313 0.0446256829643 21.4086206322 2015-03-22 20:55:06.210000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 20:55:06.210000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-46.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-46.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.883550915058 0.740548840296 0.525691798931 0.416540507266 1.40072689824 2015-03-22 22:14:13.640000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 0.547306147488 0.0687129821241 0.0334466561374 0.00999376660746 0.00429251229264 231.963805768 2015-03-22 22:14:13.640000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
120 Maryland 4 Midwest 0 1 1 1 0.452693852512 0.0477361028174 0.021371238933 0.00582335623649 0.00233754707655 426.79887089 2015-03-22 22:14:13.640000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.527441397872 0.110869569148 0.0411298651787 0.0205095275375 47.7578272183 2015-03-22 22:14:13.640000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 1 0.472558602128 0.093763695486 0.0336008119272 0.016480747348 59.6768600287 2015-03-22 22:14:13.640000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 0.69390661084 0.279483593955 0.119595436906 0.079660130183 11.5533312298 2015-03-22 22:14:13.640000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.30609338916 0.0770946786217 0.0215244411897 0.0109534798231 90.2951880268 2015-03-22 22:14:13.640000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0417990635876 0.0106684027777 0.00516113922006 192.755672413 2015-03-22 22:14:13.640000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.601622663836 0.231972120246 0.145090983003 5.8922270654 2015-03-22 22:14:13.640000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.445978102592 0.308372491803 0.123978268604 7.065929709 2015-03-22 22:14:13.640000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.187680138034 0.0962981885093 0.0239882157447 40.6871354936 2015-03-22 22:14:13.640000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0626596295069 0.0202647725489 0.00268693857883 371.170770064 2015-03-22 22:14:13.640000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0711767743317 0.039347436466 0.0111583087606 88.6193161042 2015-03-22 22:14:13.640000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.232505355536 0.127464575653 0.0348752996909 27.673588725 2015-03-22 22:14:13.640000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.456903418681 0.17167992632 0.0530502536104 0.00921789886622 107.48459226 2015-03-22 22:14:13.640000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2460 Northern Iowa 5 East 0 1 1 1 0.534403279769 0.290887090821 0.120739659577 0.0459355575402 0.0103265585812 95.8376823834 2015-03-22 22:14:13.640000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
97 Louisville 4 East 0 1 1 1 0.465596720231 0.252209490498 0.103558346601 0.041070946574 0.00965153272028 102.610486436 2015-03-22 22:14:13.640000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.267750055813 0.112576114165 0.0283690360198 34.2496996832 2015-03-22 22:14:13.640000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.336272011688 0.15561966313 0.0447213686842 21.3606752079 2015-03-22 22:14:13.640000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-22 22:14:13.640000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-47.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-47.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.873240395005 0.732108102614 0.519933513531 0.411630990501 1.42936033262 2015-03-23 01:44:05.730000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 1 0.126759604995 0.0619969916764 0.0186493464034 0.00802145010963 123.665738281 2015-03-23 01:44:05.730000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.527441397872 0.111552332737 0.0413656679832 0.0205541323309 47.652017215 2015-03-23 01:44:05.730000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 1 0.472558602128 0.0943425729733 0.0337950532 0.0165166851083 59.5448365362 2015-03-23 01:44:05.730000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 0.69390661084 0.279483593955 0.120305180571 0.0799481538201 11.5081062191 2015-03-23 01:44:05.730000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.30609338916 0.0770946786217 0.0217016759526 0.0110034612176 89.880494803 2015-03-23 01:44:05.730000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0417990635876 0.0107607745121 0.0051856477171 191.839941036 2015-03-23 01:44:05.730000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.601622663836 0.233488787846 0.145655056225 5.86553577965 2015-03-23 01:44:05.730000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.445978102592 0.306366326295 0.123722975098 7.08257317776 2015-03-23 01:44:05.730000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.187680138034 0.0953208217979 0.0238962588642 40.8475547022 2015-03-23 01:44:05.730000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.272839831007 0.0626596295069 0.0199651468215 0.00266989270736 373.546886189 2015-03-23 01:44:05.730000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2294 Iowa 7 South 0 1 1 1 0.271759966929 0.187270536941 0.0711767743317 0.0389814424998 0.0111206963097 88.9224268114 2015-03-23 01:44:05.730000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2250 Gonzaga 2 South 0 1 1 1 0.728240033071 0.539889632052 0.232505355536 0.126266639468 0.034754086982 27.7735943262 2015-03-23 01:44:05.730000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.447315247978 0.168540641815 0.0522364978651 0.00916666629201 108.09091355 2015-03-23 01:44:05.730000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
97 Louisville 4 East 0 1 1 1 1 0.552684752022 0.232909665757 0.0947807225338 0.0231698187395 42.1595953012 2015-03-23 01:44:05.730000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.26520313403 0.111640879294 0.0283227412692 34.3073168482 2015-03-23 01:44:05.730000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.333346558399 0.154441523425 0.0446612867087 21.3907565969 2015-03-23 01:44:05.730000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 01:44:05.730000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-48.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-48.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.873240395005 0.732108102614 0.519933513531 0.41060403801 1.43543635091 2015-03-23 08:28:42.690000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 1 0.126759604995 0.0619969916764 0.0186493464034 0.00796238560915 124.590501275 2015-03-23 08:28:42.690000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.527441397872 0.111552332737 0.0413656679832 0.020424263253 47.9613744012 2015-03-23 08:28:42.690000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 1 0.472558602128 0.0943425729733 0.0337950532 0.0164103046624 59.937320822 2015-03-23 08:28:42.690000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 0.69390661084 0.279483593955 0.120305180571 0.079625481297 11.5587937895 2015-03-23 08:28:42.690000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.30609338916 0.0770946786217 0.0217016759526 0.010935591671 90.4445262847 2015-03-23 08:28:42.690000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0417990635876 0.0107607745121 0.00515171143595 193.110251017 2015-03-23 08:28:42.690000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.601622663836 0.233488787846 0.144991308907 5.89696511837 2015-03-23 08:28:42.690000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.426921685588 0.294036300173 0.119294968037 7.38258324268 2015-03-23 08:28:42.690000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.176908446346 0.0902315226659 0.0227696131717 42.9181813261 2015-03-23 08:28:42.690000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.243633594917 0.05659974276 0.0182123034518 0.00246874733738 404.063728012 2015-03-23 08:28:42.690000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 0.756366405083 0.339570125306 0.190681799106 0.0553737359035 17.0591029968 2015-03-23 08:28:42.690000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.447315247978 0.168540641815 0.0512153707556 0.0090143527057 109.934199343 2015-03-23 08:28:42.690000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
97 Louisville 4 East 0 1 1 1 1 0.552684752022 0.232909665757 0.0933086356241 0.0228643038357 42.7362977324 2015-03-23 08:28:42.690000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.26520313403 0.10996431159 0.0279603348953 34.7649507327 2015-03-23 08:28:42.690000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.333346558399 0.152349756633 0.0441488592684 21.6506418642 2015-03-23 08:28:42.690000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-23 08:28:42.690000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-49.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-49.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.873240395005 0.732108102614 0.513733627392 0.405863309245 1.46388371952 2015-03-26 10:43:48.880000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 1 0.126759604995 0.0619969916764 0.0181497082414 0.00775844513043 127.891805406 2015-03-26 10:43:48.880000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 0.527441397872 0.111552332737 0.0403781513309 0.0199577409704 49.1058712749 2015-03-26 10:43:48.880000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2724 Wichita State 7 Midwest 0 1 1 1 1 0.472558602128 0.0943425729733 0.0329712553994 0.0160277736139 61.3916973179 2015-03-26 10:43:48.880000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 0.725841927277 0.316330711399 0.140966913002 0.0952938093504 9.49386111036 2015-03-26 10:43:48.880000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.274158072723 0.0694912493478 0.0196768519626 0.00995736689629 99.4281564007 2015-03-26 10:43:48.880000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0383049684833 0.0099014919893 0.00475435095049 209.333652356 2015-03-26 10:43:48.880000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.57587307077 0.224222000683 0.139540039394 6.16640187536 2015-03-26 10:43:48.880000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.426921685588 0.294036300173 0.118334099149 7.45064953546 2015-03-26 10:43:48.880000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.176908446346 0.0902315226659 0.0225041411182 43.4362659631 2015-03-26 10:43:48.880000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.243633594917 0.05659974276 0.0182123034518 0.00242948997296 410.609025405 2015-03-26 10:43:48.880000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 0.756366405083 0.339570125306 0.190681799106 0.0547852016446 17.2531043052 2015-03-26 10:43:48.880000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.447315247978 0.168540641815 0.0512153707556 0.00888653983303 111.529738097 2015-03-26 10:43:48.880000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
97 Louisville 4 East 0 1 1 1 1 0.552684752022 0.232909665757 0.0933086356241 0.0225928788163 43.2617343337 2015-03-26 10:43:48.880000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.26520313403 0.10996431159 0.0276358797057 35.1848441464 2015-03-26 10:43:48.880000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.333346558399 0.152349756633 0.0436789342102 21.8943315143 2015-03-26 10:43:48.880000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 10:43:48.880000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-50.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-50.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.873240395005 0.725390169224 0.509799242698 0.403203876609 1.48013488464 2015-03-26 21:24:38.430000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 1 0.126759604995 0.060421071354 0.0178112632553 0.00765458345152 129.640681669 2015-03-26 21:24:38.430000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.214188759422 0.0783314727597 0.039024936624 24.6246412296 2015-03-26 21:24:38.430000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 0.725841927277 0.316330711399 0.140770351308 0.0952144425115 9.50260836091 2015-03-26 21:24:38.430000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
153 North Carolina 4 West 0 1 1 1 1 0.274158072723 0.0694912493478 0.0196149294053 0.00993990713621 99.6045616218 2015-03-26 21:24:38.430000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0383049684833 0.00986617853154 0.00474519986217 209.739279492 2015-03-26 21:24:38.430000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.57587307077 0.223806562042 0.139391534958 6.17403678997 2015-03-26 21:24:38.430000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.426921685588 0.294036300173 0.118331765059 7.45081622421 2015-03-26 21:24:38.430000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.176908446346 0.0902315226659 0.0225015441637 43.4413944538 2015-03-26 21:24:38.430000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.243633594917 0.05659974276 0.0182123034518 0.00242849413721 410.777811063 2015-03-26 21:24:38.430000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 0.756366405083 0.339570125306 0.190681799106 0.0547810803994 17.2544775077 2015-03-26 21:24:38.430000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.447315247978 0.168540641815 0.0512153707556 0.00888419895461 111.559388315 2015-03-26 21:24:38.430000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
97 Louisville 4 East 0 1 1 1 1 0.552684752022 0.232909665757 0.0933086356241 0.0225900533264 43.2672704464 2015-03-26 21:24:38.430000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.26520313403 0.10996431159 0.0276327575174 35.1889326235 2015-03-26 21:24:38.430000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.333346558399 0.152349756633 0.0436756252894 21.8960660179 2015-03-26 21:24:38.430000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 21:24:38.430000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-51.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-51.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 0.873240395005 0.725390169224 0.501624395192 0.397071723083 1.51843670014 2015-03-26 22:00:09.210000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
277 West Virginia 5 Midwest 0 1 1 1 1 0.126759604995 0.060421071354 0.0170227343623 0.00734236167127 135.195960479 2015-03-26 22:00:09.210000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.214188759422 0.0753628248581 0.0376575169937 25.5551231157 2015-03-26 22:00:09.210000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 0.425543990618 0.185099000159 0.123370816181 7.10564468128 2015-03-26 22:00:09.210000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0325511426449 0.00852866578046 0.00415257720066 239.814306798 2015-03-26 22:00:09.210000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.541904866737 0.212362379649 0.132996977067 6.51896788977 2015-03-26 22:00:09.210000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.426921685588 0.294036300173 0.117320589709 7.52365303042 2015-03-26 22:00:09.210000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.176908446346 0.0902315226659 0.0221933135834 44.0586162468 2015-03-26 22:00:09.210000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.243633594917 0.05659974276 0.0182123034518 0.00237852028112 419.429461098 2015-03-26 22:00:09.210000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 0.756366405083 0.339570125306 0.190681799106 0.0541150337236 17.4791532259 2015-03-26 22:00:09.210000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.447315247978 0.168540641815 0.0512153707556 0.0087271262762 113.585256172 2015-03-26 22:00:09.210000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
97 Louisville 4 East 0 1 1 1 1 0.552684752022 0.232909665757 0.0933086356241 0.0222733069051 43.8967907756 2015-03-26 22:00:09.210000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.26520313403 0.10996431159 0.0272565424666 35.6884391601 2015-03-26 22:00:09.210000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.333346558399 0.152349756633 0.0431435948599 22.1784116101 2015-03-26 22:00:09.210000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-26 22:00:09.210000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-52.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-52.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 0.869213102522 0.649346880894 0.54214800738 0.844514756835 2015-03-27 00:12:15.050000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.130786897478 0.0470990893787 0.0239438130879 40.7644422937 2015-03-27 00:12:15.050000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 0.425543990618 0.14046983235 0.09415775707 9.62047388466 2015-03-27 00:12:15.050000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2752 Xavier 6 West 0 1 1 1 1 0.131444962922 0.0325511426449 0.00580131589054 0.00285440797747 349.335343753 2015-03-27 00:12:15.050000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
12 Arizona 2 West 0 1 1 1 1 0.868555037078 0.541904866737 0.157282881487 0.0991709176095 9.08360136323 2015-03-27 00:12:15.050000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.426921685588 0.294036300173 0.0964711214933 9.36579635979 2015-03-27 00:12:15.050000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.176908446346 0.0902315226659 0.0173181478502 56.7428954096 2015-03-27 00:12:15.050000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.243633594917 0.05659974276 0.0182123034518 0.00176047026788 567.030041885 2015-03-27 00:12:15.050000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 0.756366405083 0.339570125306 0.190681799106 0.0428279637631 22.3492305526 2015-03-27 00:12:15.050000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.447315247978 0.168540641815 0.0512153707556 0.00659375020183 150.65876313 2015-03-27 00:12:15.050000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
97 Louisville 4 East 0 1 1 1 1 0.552684752022 0.232909665757 0.0933086356241 0.0173314068611 56.6987204799 2015-03-27 00:12:15.050000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.26520313403 0.10996431159 0.0212848371416 45.9818018031 2015-03-27 00:12:15.050000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.333346558399 0.152349756633 0.0341373992966 28.2933855714 2015-03-27 00:12:15.050000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:12:15.050000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-53.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-53.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 0.869213102522 0.652858058921 0.545161633547 0.834318371772 2015-03-27 00:50:23.760000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.130786897478 0.0476719417903 0.0242593501807 40.2212195526 2015-03-27 00:50:23.760000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 0.392318870254 0.131253063054 0.088590159645 10.2879354096 2015-03-27 00:50:23.760000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
12 Arizona 2 West 0 1 1 1 1 1 0.607681129746 0.168216936235 0.103393609756 8.67177761141 2015-03-27 00:50:23.760000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.426921685588 0.294036300173 0.0967256285265 9.33852160212 2015-03-27 00:50:23.760000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.176908446346 0.0902315226659 0.0173971001341 56.4808440654 2015-03-27 00:50:23.760000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.243633594917 0.05659974276 0.0182123034518 0.00177294792506 563.032358688 2015-03-27 00:50:23.760000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 0.756366405083 0.339570125306 0.190681799106 0.0429986103869 22.2565655262 2015-03-27 00:50:23.760000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.447315247978 0.168540641815 0.0512153707556 0.00663352867373 149.749329533 2015-03-27 00:50:23.760000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
97 Louisville 4 East 0 1 1 1 1 0.552684752022 0.232909665757 0.0933086356241 0.0174125064607 56.4299858701 2015-03-27 00:50:23.760000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.26520313403 0.10996431159 0.0213812120519 45.7700333159 2015-03-27 00:50:23.760000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.333346558399 0.152349756633 0.0342737127129 28.1768799131 2015-03-27 00:50:23.760000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 00:50:23.760000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-54.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-54.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 0.869213102522 0.652051970219 0.544511060248 0.836509986675 2015-03-27 14:42:35.110000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.130786897478 0.0475348398633 0.0241927133558 40.3347599871 2015-03-27 14:42:35.110000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 0.398111414358 0.133648623077 0.090352569813 10.0677538234 2015-03-27 14:42:35.110000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
12 Arizona 2 West 0 1 1 1 1 1 0.601888585642 0.166764566841 0.102551369267 8.75121060935 2015-03-27 14:42:35.110000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.426921685588 0.294036300173 0.0966626318526 9.34525939171 2015-03-27 14:42:35.110000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.176908446346 0.0902315226659 0.017379263575 56.5398373864 2015-03-27 14:42:35.110000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
26 UCLA 11 South 0 1 1 1 1 0.243633594917 0.05659974276 0.0182123034518 0.00177027411291 563.884270015 2015-03-27 14:42:35.110000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 0.756366405083 0.339570125306 0.190681799106 0.0429592815019 22.2778567294 2015-03-27 14:42:35.110000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
152 North Carolina State 8 East 0 1 1 1 1 0.447315247978 0.168540641815 0.0512153707556 0.00662485910065 149.946606533 2015-03-27 14:42:35.110000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
97 Louisville 4 East 0 1 1 1 1 0.552684752022 0.232909665757 0.0933086356241 0.0173942518451 56.4902564884 2015-03-27 14:42:35.110000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.26520313403 0.10996431159 0.0213594182665 45.8177544689 2015-03-27 14:42:35.110000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.333346558399 0.152349756633 0.0342423070617 28.2036397605 2015-03-27 14:42:35.110000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 14:42:35.110000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-55.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-55.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 0.869213102522 0.652051970219 0.542097772811 0.844685682465 2015-03-27 22:17:19.760000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.130786897478 0.0475348398633 0.0237869927423 41.0397824489 2015-03-27 22:17:19.760000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 0.398111414358 0.133648623077 0.0894755299989 10.1762400291 2015-03-27 22:17:19.760000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
12 Arizona 2 West 0 1 1 1 1 1 0.601888585642 0.166764566841 0.101313927004 8.87031131429 2015-03-27 22:17:19.760000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
150 Duke 1 South 0 1 1 1 1 0.655415187889 0.393582273439 0.266500397797 0.0888014021835 10.2610834448 2015-03-27 22:17:19.760000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
254 Utah 5 South 0 1 1 1 1 0.344584812111 0.156875038121 0.0779025802101 0.0153323417254 64.2216091913 2015-03-27 22:17:19.760000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 1 0.449542688439 0.244584688838 0.0554127530668 17.0463872422 2015-03-27 22:17:19.760000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
97 Louisville 4 East 0 1 1 1 1 1 0.423218248948 0.164764636084 0.0310768721807 31.1782705217 2015-03-27 22:17:19.760000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.255056028785 0.102800851326 0.0201656437789 48.589292113 2015-03-27 22:17:19.760000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.321725722268 0.143446845745 0.032536764509 29.7344634628 2015-03-27 22:17:19.760000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-27 22:17:19.760000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-56.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-56.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 0.869213102522 0.652051970219 0.534273832939 0.871699376515 2015-03-28 00:10:52.740000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.130786897478 0.0475348398633 0.0228911986984 42.6849119688 2015-03-28 00:10:52.730000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 0.398111414358 0.133648623077 0.0871711744945 10.4716820761 2015-03-28 00:10:52.730000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
12 Arizona 2 West 0 1 1 1 1 1 0.601888585642 0.166764566841 0.0982706734768 9.17597584935 2015-03-28 00:10:52.730000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
150 Duke 1 South 0 1 1 1 1 1 0.590472600681 0.394307183317 0.127901788396 6.81849896347 2015-03-28 00:10:52.730000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
254 Utah 5 South 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 1 0.409527399319 0.223923646896 0.0511679965648 18.5434659775 2015-03-28 00:10:52.730000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.730000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
97 Louisville 4 East 0 1 1 1 1 1 0.423218248948 0.152513819539 0.028952641589 33.5391627539 2015-03-28 00:10:52.740000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
201 Oklahoma 3 East 0 1 1 1 1 0.459757726236 0.255056028785 0.0953573619282 0.0188220483865 52.1291801756 2015-03-28 00:10:52.740000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
127 Michigan State 7 East 0 1 1 1 1 0.540242273764 0.321725722268 0.13389798832 0.0305486454551 31.734675633 2015-03-28 00:10:52.740000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:10:52.740000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-57.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-57.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 0.869213102522 0.652051970219 0.533990418052 0.87269277911 2015-03-28 00:29:08.360000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.130786897478 0.0475348398633 0.0228453782056 42.7725298745 2015-03-28 00:29:08.360000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 0.398111414358 0.133648623077 0.0870694410502 10.4850857883 2015-03-28 00:29:08.360000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
12 Arizona 2 West 0 1 1 1 1 1 0.601888585642 0.166764566841 0.0981283660594 9.19073322178 2015-03-28 00:29:08.360000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
150 Duke 1 South 0 1 1 1 1 1 0.590472600681 0.392214101366 0.127188396236 6.86235245978 2015-03-28 00:29:08.360000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
254 Utah 5 South 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 1 0.409527399319 0.222318780999 0.0507832147157 18.6915458306 2015-03-28 00:29:08.360000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
97 Louisville 4 East 0 1 1 1 1 1 0.417190683252 0.150224180798 0.0284887699113 34.1015506501 2015-03-28 00:29:08.360000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
201 Oklahoma 3 East 0 0 1 1 1 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
127 Michigan State 7 East 0 1 1 1 1 1 0.582809316748 0.235242936837 0.05150601577 18.415207817 2015-03-28 00:29:08.360000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 00:29:08.360000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-58.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-58.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 0.869213102522 0.624801222949 0.512624159521 0.95074691941 2015-03-28 20:49:54.190000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
87 Notre Dame 3 Midwest 0 1 1 1 1 1 0.130786897478 0.0427354982655 0.0206744008143 47.3689955022 2015-03-28 20:49:54.190000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 1 0.332463278785 0.215432703793 3.64182077462 2015-03-28 20:49:54.190000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
12 Arizona 2 West 0 0 1 1 1 1 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
150 Duke 1 South 0 1 1 1 1 1 0.590472600681 0.392214101366 0.124507100168 7.03167047219 2015-03-28 20:49:54.190000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
254 Utah 5 South 0 0 1 1 1 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 1 0.409527399319 0.222318780999 0.0492936228423 19.2865998143 2015-03-28 20:49:54.190000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
97 Louisville 4 East 0 1 1 1 1 1 0.417190683252 0.150224180798 0.027525194533 35.3303517728 2015-03-28 20:49:54.190000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
201 Oklahoma 3 East 0 0 1 1 1 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
127 Michigan State 7 East 0 1 1 1 1 1 0.582809316748 0.235242936837 0.0499428183284 19.0228988566 2015-03-28 20:49:54.190000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 20:49:54.190000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-59.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-59.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 1 0.693150712565 0.554941898799 0.801990446504 2015-03-28 23:01:33.660000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
87 Notre Dame 3 Midwest 0 0 1 1 1 1 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 1 0.306849287435 0.200410365633 3.98976186606 2015-03-28 23:01:33.660000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
12 Arizona 2 West 0 0 1 1 1 1 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
150 Duke 1 South 0 1 1 1 1 1 0.590472600681 0.392214101366 0.122184764678 7.18432643901 2015-03-28 23:01:33.660000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
254 Utah 5 South 0 0 1 1 1 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 1 0.409527399319 0.222318780999 0.0477329200761 19.9499020468 2015-03-28 23:01:33.660000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
97 Louisville 4 East 0 1 1 1 1 1 0.417190683252 0.150224180798 0.0264510533099 36.8056778414 2015-03-28 23:01:33.660000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
201 Oklahoma 3 East 0 0 1 1 1 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
127 Michigan State 7 East 0 1 1 1 1 1 0.582809316748 0.235242936837 0.048278997504 19.7129404441 2015-03-28 23:01:33.660000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-28 23:01:33.660000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-60.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-60.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 1 0.693150712565 0.553923588571 0.805303151253 2015-03-29 17:07:53.530000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
87 Notre Dame 3 Midwest 0 0 1 1 1 1 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 1 0.306849287435 0.199737147843 4.0065799517 2015-03-29 17:07:53.530000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
12 Arizona 2 West 0 0 1 1 1 1 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
150 Duke 1 South 0 1 1 1 1 1 0.590472600681 0.386896797971 0.120802426199 7.27797943689 2015-03-29 17:07:53.530000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
254 Utah 5 South 0 0 1 1 1 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2250 Gonzaga 2 South 0 1 1 1 1 1 0.409527399319 0.218239272515 0.0469976270918 20.2776699991 2015-03-29 17:07:53.530000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
97 Louisville 4 East 0 0 1 1 1 1 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
201 Oklahoma 3 East 0 0 1 1 1 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
127 Michigan State 7 East 0 1 1 1 1 1 1 0.394863929514 0.0785392102955 11.7324936963 2015-03-29 17:07:53.530000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 17:07:53.530000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-61.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-61.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 1 0.693150712565 0.530763487907 0.884078356526 2015-03-29 19:14:21.260000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
87 Notre Dame 3 Midwest 0 0 1 1 1 1 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 1 0.306849287435 0.186645896961 4.35773899284 2015-03-29 19:14:21.260000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
12 Arizona 2 West 0 0 1 1 1 1 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
150 Duke 1 South 0 1 1 1 1 1 1 0.667069908151 0.215800274873 3.63391439417 2015-03-29 19:14:21.260000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
254 Utah 5 South 0 0 1 1 1 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2250 Gonzaga 2 South 0 0 1 1 1 1 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
97 Louisville 4 East 0 0 1 1 1 1 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
201 Oklahoma 3 East 0 0 1 1 1 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
127 Michigan State 7 East 0 1 1 1 1 1 1 0.332930091849 0.0667903402593 13.9722249672 2015-03-29 19:14:21.260000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-03-29 19:14:21.260000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-62.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-62.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 1 1 1 1 1 1 0.693150712565 0.488948031857 1.04520712805 2015-04-04 20:27:00.890000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
87 Notre Dame 3 Midwest 0 0 1 1 1 1 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 1 0.306849287435 0.163532382682 5.11499681958 2015-04-04 20:27:00.890000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
12 Arizona 2 West 0 0 1 1 1 1 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
150 Duke 1 South 0 1 1 1 1 1 1 1 0.347519585461 1.87753566083 2015-04-04 20:27:00.890000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
254 Utah 5 South 0 0 1 1 1 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2250 Gonzaga 2 South 0 0 1 1 1 1 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
97 Louisville 4 East 0 0 1 1 1 1 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
201 Oklahoma 3 East 0 0 1 1 1 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
127 Michigan State 7 East 0 0 1 1 1 1 1 0 0 -- 2015-04-04 20:27:00.890000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 20:27:00.890000
|
||||
|
69
march-madness-predictions-2015/mens/bracket-63.tsv
Normal file
69
march-madness-predictions-2015/mens/bracket-63.tsv
Normal file
@@ -0,0 +1,69 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
96 Kentucky 1 Midwest 0 0 1 1 1 1 1 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2363 Manhattan 16a Midwest 1 0 0 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2261 Hampton 16b Midwest 1 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2132 Cincinnati 8 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2509 Purdue 9 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
277 West Virginia 5 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2084 Buffalo 12 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
120 Maryland 4 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2674 Valparaiso 13 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2086 Butler 6 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
251 Texas 11 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
87 Notre Dame 3 Midwest 0 0 1 1 1 1 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
111 Northeastern 14 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2724 Wichita State 7 Midwest 0 0 1 1 1 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
84 Indiana 10 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2305 Kansas 2 Midwest 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
166 New Mexico State 15 Midwest 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
275 Wisconsin 1 West 0 1 1 1 1 1 1 1 0.530650848481 0.884478283343 2015-04-04 23:17:00.050000
|
||||
324 Coastal Carolina 16 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2483 Oregon 8 West 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
197 Oklahoma State 9 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
8 Arkansas 5 West 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2747 Wofford 12 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
153 North Carolina 4 West 0 0 1 1 1 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
108 Harvard 13 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2752 Xavier 6 West 0 0 1 1 1 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
252 Brigham Young 11a West 1 0 0 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
145 Ole Miss 11b West 1 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
239 Baylor 3 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2247 Georgia State 14 West 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2670 Virginia Commonwealth 7 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
194 Ohio State 10 West 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
12 Arizona 2 West 0 0 1 1 1 1 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2640 Texas Southern 15 West 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
150 Duke 1 South 0 1 1 1 1 1 1 1 0.469349151519 1.13061000912 2015-04-04 23:17:00.050000
|
||||
2454 North Florida 16a South 1 0 0 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2523 Robert Morris 16b South 1 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
21 San Diego State 8 South 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2599 St. John's 9 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
254 Utah 5 South 0 0 1 1 1 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2617 Stephen F. Austin 12 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
46 Georgetown 4 South 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
331 Eastern Washington 13 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2567 Southern Methodist 6 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
26 UCLA 11 South 0 0 1 1 1 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
66 Iowa State 3 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
5 UAB 14 South 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2294 Iowa 7 South 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2166 Davidson 10 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2250 Gonzaga 2 South 0 0 1 1 1 1 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2449 North Dakota State 15 South 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
222 Villanova 1 East 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
322 Lafayette 16 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
152 North Carolina State 8 East 0 0 1 1 1 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
99 LSU 9 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2460 Northern Iowa 5 East 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2751 Wyoming 12 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
97 Louisville 4 East 0 0 1 1 1 1 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
300 UC Irvine 13 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2507 Providence 6 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
68 Boise State 11a East 1 0 0 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2168 Dayton 11b East 1 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
201 Oklahoma 3 East 0 0 1 1 1 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
399 Albany 14 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
127 Michigan State 7 East 0 0 1 1 1 1 1 0 0 -- 2015-04-04 23:17:00.050000
|
||||
61 Georgia 10 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
258 Virginia 2 East 0 0 1 1 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
2057 Belmont 15 East 0 0 1 0 0 0 0 0 0 -- 2015-04-04 23:17:00.050000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-00.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-00.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.980070296378 0.9591310072 0.879238581801 0.736198460375 0.358329382393 2015-03-17 11:50:46.150000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.37144789528e-07 6.9339189084e-08 2.24892484563e-09 4.55141875598e-11 21971171047.3 2015-03-17 11:50:46.150000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00454386884273 0.0024437049833 0.000722205561456 0.000136615311784 7318.82372211 2015-03-17 11:50:46.150000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000905651974974 0.000369226033574 7.57017365784e-05 9.70261687159e-06 103063.978576 2015-03-17 11:50:46.150000
|
||||
251 Texas 5 Albany 1 1 0.766968929146 0.309514835437 0.00582903452199 0.00293239930185 0.00106293791795 0.000252446618676 3960.23348867 2015-03-17 11:50:46.150000
|
||||
98 Western Kentucky 12 Albany 1 1 0.233031070854 0.0474320408344 0.00041159122107 0.000138429428647 3.02940758525e-05 4.17237468676e-06 239670.667833 2015-03-17 11:50:46.150000
|
||||
25 California 4 Albany 1 1 0.871403520417 0.604168526206 0.00799467698905 0.00336853293844 0.000940202500514 0.0001661917954 6016.14421338 2015-03-17 11:50:46.150000
|
||||
2724 Wichita State 13 Albany 1 1 0.128596479583 0.0388845975233 0.000243942926902 6.75489203987e-05 1.21012158784e-05 1.35003316443e-06 740721.543972 2015-03-17 11:50:46.150000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.221869231019 0.0055486529056 0.0024613935563 0.000737723368676 1354.52165278 2015-03-17 11:50:46.150000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0129888067968 0.000164753564333 3.58480388964e-05 4.89810864226e-06 204159.436821 2015-03-17 11:50:46.150000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.294780533092 0.0123353416643 0.00533708151541 0.00154943206374 644.397770838 2015-03-17 11:50:46.150000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00155913884718 1.01523578964e-05 1.14207229581e-06 7.88336046122e-08 12684944.7781 2015-03-17 11:50:46.150000
|
||||
2168 Dayton 7 Albany 1 1 0.696182103113 0.217606262529 0.0897707464544 0.00203890721826 0.000569021504866 0.000100924759821 9907.37136272 2015-03-17 11:50:46.150000
|
||||
66 Iowa State 10 Albany 1 1 0.303817896887 0.0557920468146 0.0159211020534 0.000216273830102 4.24271157564e-05 5.18423586208e-06 192891.45833 2015-03-17 11:50:46.150000
|
||||
96 Kentucky 2 Albany 1 1 0.983253186103 0.725321660342 0.363049360049 0.0112348874002 0.00400535374632 0.000926958743891 1077.79666338 2015-03-17 11:50:46.150000
|
||||
2634 Tennessee State 15 Albany 1 1 0.0167468138968 0.00128003031372 6.10816872999e-05 1.12913827071e-07 4.48393178522e-09 1.09732610644e-10 9113061231.5 2015-03-17 11:50:46.150000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.849860700812 0.642888262666 0.372075798446 0.0486979820408 0.0214070131447 45.7136630991 2015-03-17 11:50:46.150000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 0.000104863250993 7.8782728283e-06 3.16712960949e-07 1.4013846518e-09 3.76417022854e-11 26566279930.2 2015-03-17 11:50:46.150000
|
||||
163 Princeton 8 Spokane 1 1 0.725710552549 0.127650575674 0.0680352638051 0.0235876774566 0.00142670993669 0.000362226112685 2759.70654484 2015-03-17 11:50:46.150000
|
||||
2739 Green Bay 9 Spokane 1 1 0.274289447451 0.0223838602631 0.00946232979236 0.00247039393738 9.03759690488e-05 1.54086028582e-05 64897.8106971 2015-03-17 11:50:46.150000
|
||||
344 Mississippi State 5 Spokane 1 1 0.753002373256 0.184388565991 0.0380643253194 0.00972913455367 0.000427992103503 8.44095362558e-05 11846.0026535 2015-03-17 11:50:46.150000
|
||||
2655 Tulane 12 Spokane 1 1 0.246997626744 0.0285674453056 0.00273276631893 0.000354954599137 7.65083603779e-06 8.34245925982e-07 1198686.30413 2015-03-17 11:50:46.150000
|
||||
150 Duke 4 Spokane 1 1 0.928629802066 0.763281634974 0.236794789414 0.0861900495385 0.00600876231551 0.00169129970089 590.26126462 2015-03-17 11:50:46.150000
|
||||
399 Albany 13 Spokane 1 1 0.0713701979343 0.0237623537296 0.00201438441174 0.000235147327353 3.91302645174e-06 3.4045489594e-07 2937245.64243 2015-03-17 11:50:46.150000
|
||||
45 George Washington 6 Spokane 1 1 0.521564039532 0.0853869107593 0.0176179004014 0.0042089234744 0.000156186695738 2.68546705334e-05 37236.4704339 2015-03-17 11:50:46.150000
|
||||
2250 Gonzaga 11 Spokane 1 1 0.478435960468 0.0739666171335 0.0190854787325 0.00562421043414 9.45133804311e-05 8.18039270429e-06 122242.520103 2015-03-17 11:50:46.150000
|
||||
204 Oregon State 3 Spokane 1 1 0.943924351269 0.821216319831 0.35602933974 0.167013791842 0.00823760780025 0.00176038328909 567.058107685 2015-03-17 11:50:46.150000
|
||||
2571 South Dakota State 14 Spokane 1 1 0.0560756487311 0.019430152276 0.00235244035046 0.000341797932716 5.23847682099e-06 4.22969365401e-07 2364236.41718 2015-03-17 11:50:46.150000
|
||||
236 Chattanooga 7 Spokane 1 1 0.594661346014 0.0484145578475 0.0104689362883 0.00189115812783 5.35559868463e-05 7.34585894068e-06 136130.119325 2015-03-17 11:50:46.150000
|
||||
221 Pittsburgh 10 Spokane 1 1 0.405338653986 0.0241407424686 0.00467786878126 0.000759487622386 1.73327020833e-05 1.98012856131e-06 505016.714272 2015-03-17 11:50:46.150000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.926160249034 0.58962546838 0.325503650384 0.0402377907596 0.0170356964132 57.7002712272 2015-03-17 11:50:46.150000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.00128445065034 0.000142567325982 1.35076106935e-05 8.74773136855e-08 3.28692816173e-09 304235428.19 2015-03-17 11:50:46.150000
|
||||
2579 South Carolina 1 Greensboro 1 1 0.998464762569 0.950751949394 0.80716522063 0.673138113314 0.404851902018 0.100921713656 8.90867043151 2015-03-17 11:50:46.150000
|
||||
2542 Savannah State 16 Greensboro 1 1 0.00153523743091 0.000117091082996 4.91172673496e-06 2.6050358296e-07 6.84136085908e-09 5.2328300942e-11 19110117889.3 2015-03-17 11:50:46.150000
|
||||
183 Syracuse 8 Greensboro 1 1 0.520689842326 0.0264743105991 0.010318684981 0.00412108578889 0.000796599308367 4.66462315413e-05 21436.9590153 2015-03-17 11:50:46.150000
|
||||
158 Nebraska 9 Greensboro 1 1 0.479310157674 0.022656648924 0.00821022871656 0.00306922141082 0.000595847185467 3.51079240859e-05 28482.598106 2015-03-17 11:50:46.150000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.199865745582 0.0284260900936 0.0132056832403 0.00304526706455 0.000216923288207 4608.92458792 2015-03-17 11:50:46.150000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.108781006481 0.0116472807481 0.00453578685573 0.000792879259086 4.14804018936e-05 24106.7702806 2015-03-17 11:50:46.150000
|
||||
153 North Carolina 4 Greensboro 1 1 0.950177253997 0.683542934425 0.134010474861 0.0745999412127 0.0201661933438 0.0017140055448 582.428684366 2015-03-17 11:50:46.150000
|
||||
2335 Liberty 13 Greensboro 1 1 0.0498227460031 0.00781031351205 0.000217108242921 3.2150224163e-05 1.78744832311e-06 2.84469254971e-08 35153182.7809 2015-03-17 11:50:46.150000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0829301113889 0.0129398608001 0.0029296118672 0.000204032656013 4900.17621139 2015-03-17 11:50:46.150000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00415722909664 0.000282334699997 2.97526894264e-05 9.10040823421e-07 1098850.80342 2015-03-17 11:50:46.150000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.232717907839 0.0356638160993 0.00770745470547 0.000505551791724 1977.03670439 2015-03-17 11:50:46.150000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169038385354 0.000104252279601 8.4932863538e-06 1.99288025925e-07 5017861.94163 2015-03-17 11:50:46.150000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 0.593289458875 0.0952876811442 0.0440874163211 0.00577021058084 0.0013401694296 9.65873631239e-05 10352.3212592 2015-03-17 11:50:46.150000
|
||||
197 Oklahoma State 10 Greensboro 1 1 0.406710541125 0.0490522680227 0.02022622778 0.00225857345005 0.00036765781055 1.78335303714e-05 56073.1467997 2015-03-17 11:50:46.150000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.855574748112 0.614188268256 0.170278695595 0.0659647730573 0.00874318297479 113.374822405 2015-03-17 11:50:46.150000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 8.53027210093e-05 2.45546465604e-06 1.39445596973e-08 1.67639073036e-10 6.03638293205e-13 1.65662121051e+12 2015-03-17 11:50:46.150000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 0.996272578742 0.923373807169 0.799050070444 0.578869124936 0.342064278097 0.0853001964088 10.7233024319 2015-03-17 11:50:46.150000
|
||||
149 Montana 16 Oklahoma City 1 1 0.0037274212578 0.000409736251338 5.27030140025e-05 4.15331244414e-06 2.0862514854e-07 3.03779670107e-09 329185951.321 2015-03-17 11:50:46.150000
|
||||
135 Minnesota 8 Oklahoma City 1 1 0.229224903064 0.00711405163776 0.00235076270895 0.000490912944793 6.67229198161e-05 2.70758568289e-06 369331.725579 2015-03-17 11:50:46.150000
|
||||
305 DePaul 9 Oklahoma City 1 1 0.770775096936 0.0691024049417 0.0357482297826 0.0122722954914 0.002980276016 0.000229310944996 4359.89084198 2015-03-17 11:50:46.150000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0271568807068 0.00977195203474 0.00182410452363 0.000103748047611 9637.73560062 2015-03-17 11:50:46.150000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.0013333387571 0.000196109392075 2.25256415098e-05 7.64097433701e-07 1308732.61942 2015-03-17 11:50:46.150000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.133413097234 0.0476173148992 0.0113872213844 0.000853199431225 1171.05891542 2015-03-17 11:50:46.150000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000894917351952 9.69886017957e-05 6.67935642492e-06 1.32714662112e-07 7534961.48329 2015-03-17 11:50:46.150000
|
||||
264 Washington 6 Oklahoma City 1 1 0.582297639535 0.14004532393 0.0217908443258 0.0027799117148 0.000394534009886 1.66460453748e-05 60073.328616 2015-03-17 11:50:46.150000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 0.417702360465 0.0817438680202 0.0101279364072 0.00104248081291 0.00018057178991 9.53380982085e-06 104888.862373 2015-03-17 11:50:46.150000
|
||||
2294 Iowa 3 Oklahoma City 1 1 0.940678599289 0.762408272566 0.191684502635 0.0385150202394 0.0083097901767 0.000552758840643 1808.10720277 2015-03-17 11:50:46.150000
|
||||
44 American University 14 Oklahoma City 1 1 0.0593214007107 0.0158025354837 0.000816155752604 3.70453395084e-05 2.50070099285e-06 4.88708170257e-08 20462108.309 2015-03-17 11:50:46.150000
|
||||
77 Northwestern 7 Oklahoma City 1 1 0.57127893546 0.0544582513816 0.0261727400938 0.00419902097504 0.000777976193718 4.40688244842e-05 22690.7784103 2015-03-17 11:50:46.150000
|
||||
8 Arkansas 10 Oklahoma City 1 1 0.42872106454 0.0322647513992 0.0139617153526 0.00193481483007 0.000269660774407 1.11826481286e-05 89423.2569829 2015-03-17 11:50:46.150000
|
||||
239 Baylor 2 Oklahoma City 1 1 0.99748323249 0.913119560303 0.735437985454 0.302172755747 0.123114552675 0.0178349572532 55.0696605999 2015-03-17 11:50:46.150000
|
||||
2466 Northwestern State 15 Oklahoma City 1 1 0.0025167675102 0.000157436915905 8.11997954341e-06 9.8729137963e-08 1.63345208674e-09 7.98079285518e-12 1.25300833907e+11 2015-03-17 11:50:46.150000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-01.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-01.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.980070296378 0.959065811625 0.879090078521 0.736103485101 0.358504639959 2015-03-20 14:18:41.230000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.37144789528e-07 6.85672141225e-08 2.24629360904e-09 4.54629475766e-11 21995934123.5 2015-03-20 14:18:41.230000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00454386884273 0.0024375882355 0.000723022496413 0.000136770069445 7310.541217 2015-03-20 14:18:41.230000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000905651974974 0.00036775119355 7.57777415094e-05 9.7123438278e-06 102960.758534 2015-03-20 14:18:41.230000
|
||||
251 Texas 5 Albany 1 1 0.766968929146 0.309514835437 0.00582903452199 0.00292408095905 0.00106301371671 0.000252495541644 3959.46596898 2015-03-20 14:18:41.230000
|
||||
98 Western Kentucky 12 Albany 1 1 0.233031070854 0.0474320408344 0.00041159122107 0.000137726100353 3.02876059535e-05 4.1719956685e-06 239692.441571 2015-03-20 14:18:41.230000
|
||||
25 California 4 Albany 1 1 0.871403520417 0.604168526206 0.00799467698905 0.00335575010832 0.000940324115871 0.00016622684004 6014.87565378 2015-03-20 14:18:41.230000
|
||||
2724 Wichita State 13 Albany 1 1 0.128596479583 0.0388845975233 0.000243942926902 6.71436851319e-05 1.20961638552e-05 1.34965518892e-06 740928.985828 2015-03-20 14:18:41.230000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.218570161086 0.00547518495938 0.00243536807093 0.00073092965516 1367.12071167 2015-03-20 14:18:41.230000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0126646971067 0.000161097356961 3.52943324474e-05 4.83393162213e-06 206869.944434 2015-03-20 14:18:41.230000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.292111385707 0.0122354743737 0.00530695041514 0.00154204889564 647.487867555 2015-03-20 14:18:41.230000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00150616902187 9.84521729019e-06 1.11860487506e-06 7.74673100275e-08 12908669.7625 2015-03-20 14:18:41.230000
|
||||
2168 Dayton 7 Albany 1 1 1 0.315627142326 0.131308971474 0.00302344753959 0.000855858153011 0.000153650016888 6507.29736473 2015-03-20 14:18:41.230000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 14:18:41.230000
|
||||
96 Kentucky 2 Albany 1 1 0.983253186103 0.683413311102 0.343791798261 0.0107389414182 0.0038645819245 0.000901462734219 1108.3081966 2015-03-20 14:18:41.230000
|
||||
2634 Tennessee State 15 Albany 1 1 0.0167468138968 0.00095954657227 4.68173440987e-05 8.86609886665e-08 3.63415430603e-09 9.10364841888e-11 10984606982.8 2015-03-20 14:18:41.230000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.849860700812 0.65738660866 0.380774611498 0.0499325369881 0.0219723422199 44.5117615588 2015-03-20 14:18:41.230000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 0.000104863250993 8.10009053161e-06 3.29377628934e-07 1.4770679988e-09 4.0100893792e-11 24937100034.4 2015-03-20 14:18:41.230000
|
||||
163 Princeton 8 Spokane 1 1 0.725710552549 0.127650575674 0.0707460261731 0.024596645639 0.0014947018694 0.000380595385923 2626.46222625 2015-03-20 14:18:41.230000
|
||||
2739 Green Bay 9 Spokane 1 1 0.274289447451 0.0223838602631 0.00986291156804 0.00258563914458 9.51921723382e-05 1.62982751228e-05 61355.1860054 2015-03-20 14:18:41.230000
|
||||
344 Mississippi State 5 Spokane 1 1 0.753002373256 0.177252731641 0.0373769384193 0.00974554505788 0.000440102656348 8.86782615261e-05 11275.7208422 2015-03-20 14:18:41.230000
|
||||
2655 Tulane 12 Spokane 1 1 0.246997626744 0.0249298058609 0.00248161430471 0.000334712915867 7.537111383e-06 8.54297455318e-07 1170551.47417 2015-03-20 14:18:41.230000
|
||||
150 Duke 4 Spokane 1 1 1 0.797817462498 0.222137800784 0.0730758486511 0.00443533171164 0.0011135022053 897.067372688 2015-03-20 14:18:41.230000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 14:18:41.230000
|
||||
45 George Washington 6 Spokane 1 1 0.521564039532 0.0853869107593 0.0176179004014 0.00428615040006 0.000159325524836 2.7398373713e-05 36497.5166812 2015-03-20 14:18:41.230000
|
||||
2250 Gonzaga 11 Spokane 1 1 0.478435960468 0.0739666171335 0.0190854787325 0.00571435090669 9.62074956417e-05 8.32572040631e-06 120108.72639 2015-03-20 14:18:41.230000
|
||||
204 Oregon State 3 Spokane 1 1 0.943924351269 0.821216319831 0.35602933974 0.168419913726 0.00831884565095 0.00177786707614 561.471746859 2015-03-20 14:18:41.230000
|
||||
2571 South Dakota State 14 Spokane 1 1 0.0560756487311 0.019430152276 0.00235244035046 0.000349671584957 5.37087968272e-06 4.33707121234e-07 2305702.43681 2015-03-20 14:18:41.230000
|
||||
236 Chattanooga 7 Spokane 1 1 0.594661346014 0.0484145578475 0.0104689362883 0.00193109440349 5.47914890607e-05 7.51662954765e-06 133037.350987 2015-03-20 14:18:41.230000
|
||||
221 Pittsburgh 10 Spokane 1 1 0.405338653986 0.0241407424686 0.00467786878126 0.000776257720523 1.77514127775e-05 2.02829467308e-06 493024.009271 2015-03-20 14:18:41.230000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.926160249034 0.58962546838 0.327395365584 0.0405084358127 0.0171555244224 57.2902612232 2015-03-20 14:18:41.230000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.00128445065034 0.000142567325982 1.38633909024e-05 9.00051620164e-08 3.38215751626e-09 295669256.033 2015-03-20 14:18:41.230000
|
||||
2579 South Carolina 1 Greensboro 1 1 0.998464762569 0.950751949394 0.80716522063 0.673138113314 0.404669398727 0.100871373321 8.91361540024 2015-03-20 14:18:41.230000
|
||||
2542 Savannah State 16 Greensboro 1 1 0.00153523743091 0.000117091082996 4.91172673496e-06 2.6050358296e-07 6.79496296916e-09 5.20883454415e-11 19198152513.2 2015-03-20 14:18:41.230000
|
||||
183 Syracuse 8 Greensboro 1 1 0.520689842326 0.0264743105991 0.010318684981 0.00412108578889 0.000794042598617 4.65268683335e-05 21491.9574205 2015-03-20 14:18:41.230000
|
||||
158 Nebraska 9 Greensboro 1 1 0.479310157674 0.022656648924 0.00821022871656 0.00306922141082 0.000593940715956 3.50183328837e-05 28555.4707869 2015-03-20 14:18:41.230000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.199865745582 0.0284260900936 0.0132056832403 0.00303680580976 0.000216430565915 4619.41946696 2015-03-20 14:18:41.230000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.108781006481 0.0116472807481 0.00453578685573 0.000790156944312 4.13682411869e-05 24172.1330922 2015-03-20 14:18:41.230000
|
||||
153 North Carolina 4 Greensboro 1 1 0.950177253997 0.683542934425 0.134010474861 0.0745999412127 0.0201186487924 0.00171059141797 583.593135155 2015-03-20 14:18:41.230000
|
||||
2335 Liberty 13 Greensboro 1 1 0.0498227460031 0.00781031351205 0.000217108242921 3.2150224163e-05 1.77733880033e-06 2.83323979332e-08 35295281.8899 2015-03-20 14:18:41.230000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0829301113889 0.0129398608001 0.00292133576905 0.000203562526784 4911.49551573 2015-03-20 14:18:41.230000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00415722909664 0.000282334699997 2.96192504567e-05 9.0698662768e-07 1102551.08785 2015-03-20 14:18:41.230000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.232717907839 0.0356638160993 0.00768478519795 0.00050434427181 1981.77259383 2015-03-20 14:18:41.230000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169038385354 0.000104252279601 8.4509839154e-06 1.98560734547e-07 5036241.44884 2015-03-20 14:18:41.230000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 0.593289458875 0.0952876811442 0.0440874163211 0.00577021058084 0.00133647015026 9.63694452692e-05 10375.7329697 2015-03-20 14:18:41.230000
|
||||
197 Oklahoma State 10 Greensboro 1 1 0.406710541125 0.0490522680227 0.02022622778 0.00225857345005 0.000366338283616 1.77835424638e-05 56230.7660856 2015-03-20 14:18:41.230000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.855574748112 0.614188268256 0.170278695595 0.0658756352219 0.0087315397157 113.527337968 2015-03-20 14:18:41.230000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 8.53027210093e-05 2.45546465604e-06 1.39445596973e-08 1.66346417563e-10 6.00651625801e-13 1.66485855868e+12 2015-03-20 14:18:41.230000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 0.996272578742 0.923373807169 0.799050070444 0.576887956618 0.341020874254 0.0850793198009 10.7537375985 2015-03-20 14:18:41.230000
|
||||
149 Montana 16 Oklahoma City 1 1 0.0037274212578 0.000409736251338 5.27030140025e-05 4.11191185572e-06 2.06645592137e-07 3.01258271953e-09 331941091.776 2015-03-20 14:18:41.230000
|
||||
135 Minnesota 8 Oklahoma City 1 1 0.229224903064 0.00711405163776 0.00235076270895 0.0004856926463 6.60793443386e-05 2.6848600936e-06 372457.886176 2015-03-20 14:18:41.230000
|
||||
305 DePaul 9 Oklahoma City 1 1 0.770775096936 0.0691024049417 0.0357482297826 0.0121526983238 0.00295429975516 0.000227575953145 4393.137369 2015-03-20 14:18:41.230000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0271568807068 0.0096790490227 0.00180882694065 0.000103016481309 9706.18459117 2015-03-20 14:18:41.230000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.0013333387571 0.000194025226 2.23043286493e-05 7.57439555875e-07 1320236.36052 2015-03-20 14:18:41.230000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.133413097234 0.0471625531765 0.0112901977344 0.000846917418308 1179.75266653 2015-03-20 14:18:41.230000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000894917351952 9.59788391989e-05 6.61429209541e-06 1.31584549727e-07 7599675.42155 2015-03-20 14:18:41.230000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 14:18:41.230000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.192185651133 0.0231577952991 0.00233279821539 0.000396226364147 2.04408510764e-05 48920.6420717 2015-03-20 14:18:41.230000
|
||||
2294 Iowa 3 Oklahoma City 1 1 0.940678599289 0.789734879538 0.195948364045 0.0392320859539 0.00843437726813 0.000558560659424 1789.31584686 2015-03-20 14:18:41.230000
|
||||
44 American University 14 Oklahoma City 1 1 0.0593214007107 0.0180794693284 0.000923358290318 4.1464479487e-05 2.77018548144e-06 5.35546788682e-08 18672503.8331 2015-03-20 14:18:41.230000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 14:18:41.230000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.070533109379 0.0298152301398 0.00390368851123 0.000513281289535 1.9904999336e-05 50237.6351852 2015-03-20 14:18:41.230000
|
||||
239 Baylor 2 Oklahoma City 1 1 0.99748323249 0.929274075889 0.750144909943 0.307827773056 0.125256526829 0.0181060085177 54.230284412 2015-03-20 14:18:41.230000
|
||||
2466 Northwestern State 15 Oklahoma City 1 1 0.0025167675102 0.000192814731703 1.03422834955e-05 1.2401914956e-07 2.02384951332e-09 9.76070619268e-12 1.02451603424e+11 2015-03-20 14:18:41.230000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-02.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-02.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.980070296378 0.959065811625 0.879090078521 0.736021924715 0.358655179174 2015-03-20 16:22:34.460000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.37144789528e-07 6.85672141225e-08 2.24629360904e-09 4.50926896691e-11 22176543632.5 2015-03-20 16:22:34.460000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00454386884273 0.0024375882355 0.000723022496413 0.0001362261473 7339.73465203 2015-03-20 16:22:34.460000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000905651974974 0.00036775119355 7.57777415094e-05 9.66483686291e-06 103466.861298 2015-03-20 16:22:34.460000
|
||||
251 Texas 5 Albany 1 1 0.766968929146 0.309514835437 0.00582903452199 0.00292408095905 0.00106301371671 0.000251638064945 3972.96157143 2015-03-20 16:22:34.460000
|
||||
98 Western Kentucky 12 Albany 1 1 0.233031070854 0.0474320408344 0.00041159122107 0.000137726100353 3.02876059535e-05 4.1522671768e-06 240831.286898 2015-03-20 16:22:34.460000
|
||||
25 California 4 Albany 1 1 0.871403520417 0.604168526206 0.00799467698905 0.00335575010832 0.000940324115871 0.000165538244659 6039.90010778 2015-03-20 16:22:34.460000
|
||||
2724 Wichita State 13 Albany 1 1 0.128596479583 0.0388845975233 0.000243942926902 6.71436851319e-05 1.20961638552e-05 1.34264281013e-06 744798.72816 2015-03-20 16:22:34.460000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.218570161086 0.00547518495938 0.00243536807093 0.000728915626535 1370.90089442 2015-03-20 16:22:34.460000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0126646971067 0.000161097356961 3.52943324474e-05 4.81101007089e-06 207855.559281 2015-03-20 16:22:34.460000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.292111385707 0.0122354743737 0.00530695041514 0.0015376596089 649.338991943 2015-03-20 16:22:34.460000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00150616902187 9.84521729019e-06 1.11860487506e-06 7.69899916267e-08 12988700.2438 2015-03-20 16:22:34.460000
|
||||
2168 Dayton 7 Albany 1 1 1 0.315627142326 0.131308971474 0.00302344753959 0.000855858153011 0.000153019285129 6534.12398228 2015-03-20 16:22:34.460000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 16:22:34.460000
|
||||
96 Kentucky 2 Albany 1 1 0.983253186103 0.683413311102 0.343791798261 0.0107389414182 0.0038645819245 0.00089835827804 1112.14163229 2015-03-20 16:22:34.460000
|
||||
2634 Tennessee State 15 Albany 1 1 0.0167468138968 0.00095954657227 4.68173440987e-05 8.86609886665e-08 3.63415430603e-09 9.03221230893e-11 11071484656.3 2015-03-20 16:22:34.460000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.849860700812 0.65738660866 0.380774611498 0.0499325369881 0.0219393987618 44.5801004785 2015-03-20 16:22:34.460000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 0.000104863250993 8.10009053161e-06 3.29377628934e-07 1.4770679988e-09 3.97909062591e-11 25131370304.8 2015-03-20 16:22:34.460000
|
||||
163 Princeton 8 Spokane 1 1 0.725710552549 0.127650575674 0.0707460261731 0.024596645639 0.0014947018694 0.000379373655204 2634.92367652 2015-03-20 16:22:34.460000
|
||||
2739 Green Bay 9 Spokane 1 1 0.274289447451 0.0223838602631 0.00986291156804 0.00258563914458 9.51921723382e-05 1.62295014677e-05 61615.1871634 2015-03-20 16:22:34.460000
|
||||
344 Mississippi State 5 Spokane 1 1 0.753002373256 0.177252731641 0.0373769384193 0.00974554505788 0.000440102656348 8.83395224294e-05 11318.9615812 2015-03-20 16:22:34.460000
|
||||
2655 Tulane 12 Spokane 1 1 0.246997626744 0.0249298058609 0.00248161430471 0.000334712915867 7.537111383e-06 8.49887806169e-07 1176624.89431 2015-03-20 16:22:34.460000
|
||||
150 Duke 4 Spokane 1 1 1 0.797817462498 0.222137800784 0.0730758486511 0.00443533171164 0.00110988529872 899.994004654 2015-03-20 16:22:34.460000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 16:22:34.460000
|
||||
45 George Washington 6 Spokane 1 1 0.521564039532 0.0853869107593 0.0176179004014 0.00428615040006 0.000159325524836 2.72830493553e-05 36651.7944503 2015-03-20 16:22:34.460000
|
||||
2250 Gonzaga 11 Spokane 1 1 0.478435960468 0.0739666171335 0.0190854787325 0.00571435090669 9.62074956417e-05 8.27805145723e-06 120800.375199 2015-03-20 16:22:34.460000
|
||||
204 Oregon State 3 Spokane 1 1 0.943924351269 0.821216319831 0.35602933974 0.168419913726 0.00831884565095 0.00177134106587 563.544016548 2015-03-20 16:22:34.460000
|
||||
2571 South Dakota State 14 Spokane 1 1 0.0560756487311 0.019430152276 0.00235244035046 0.000349671584957 5.37087968272e-06 4.31163967453e-07 2319302.27088 2015-03-20 16:22:34.460000
|
||||
236 Chattanooga 7 Spokane 1 1 0.594661346014 0.0484145578475 0.0104689362883 0.00193109440349 5.47914890607e-05 7.48101529953e-06 133670.695614 2015-03-20 16:22:34.460000
|
||||
221 Pittsburgh 10 Spokane 1 1 0.405338653986 0.0241407424686 0.00467786878126 0.000776257720523 1.77514127775e-05 2.01786051842e-06 495573.392219 2015-03-20 16:22:34.460000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.926160249034 0.58962546838 0.327395365584 0.0405084358127 0.0171273811585 57.3860422529 2015-03-20 16:22:34.460000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.00128445065034 0.000142567325982 1.38633909024e-05 9.00051620164e-08 3.3577016239e-09 297822769.458 2015-03-20 16:22:34.460000
|
||||
2579 South Carolina 1 Greensboro 1 1 0.998464762569 0.950751949394 0.80716522063 0.673138113314 0.403056981178 0.100468858228 8.95333297938 2015-03-20 16:22:34.460000
|
||||
2542 Savannah State 16 Greensboro 1 1 0.00153523743091 0.000117091082996 4.91172673496e-06 2.6050358296e-07 6.64091349541e-09 5.09393491166e-11 19631189194.4 2015-03-20 16:22:34.460000
|
||||
183 Syracuse 8 Greensboro 1 1 0.520689842326 0.0264743105991 0.010318684981 0.00412108578889 0.000782920397829 4.58933130114e-05 21788.6668247 2015-03-20 16:22:34.460000
|
||||
158 Nebraska 9 Greensboro 1 1 0.479310157674 0.022656648924 0.00821022871656 0.00306922141082 0.000585637735883 3.4542436956e-05 28948.8972315 2015-03-20 16:22:34.460000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.199865745582 0.0284260900936 0.0132056832403 0.00299782438883 0.000213727233286 4677.86092298 2015-03-20 16:22:34.460000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.108781006481 0.0116472807481 0.00453578685573 0.000778594045028 4.07798662688e-05 24520.9048392 2015-03-20 16:22:34.460000
|
||||
153 North Carolina 4 Greensboro 1 1 0.950177253997 0.683542934425 0.134010474861 0.0745999412127 0.0198835220676 0.00169110104094 590.330722288 2015-03-20 16:22:34.460000
|
||||
2335 Liberty 13 Greensboro 1 1 0.0498227460031 0.00781031351205 0.000217108242921 3.2150224163e-05 1.74147452631e-06 2.77763599573e-08 36001836.5891 2015-03-20 16:22:34.460000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0829301113889 0.0129398608001 0.00288346631898 0.000200994921499 4974.25008365 2015-03-20 16:22:34.460000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00415722909664 0.000282334699997 2.91037089209e-05 8.91642833542e-07 1121524.30406 2015-03-20 16:22:34.460000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.232717907839 0.0356638160993 0.00758274425725 0.000497827651173 2007.72731285 2015-03-20 16:22:34.460000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169038385354 0.000104252279601 8.29373788601e-06 1.94968736269e-07 5129026.44889 2015-03-20 16:22:34.460000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 0.593289458875 0.0952876811442 0.0440874163211 0.00577021058084 0.00131938105567 9.51705369175e-05 10506.4535921 2015-03-20 16:22:34.460000
|
||||
197 Oklahoma State 10 Greensboro 1 1 0.406710541125 0.0490522680227 0.02022622778 0.00225857345005 0.000360820719234 1.75232526438e-05 57066.0308948 2015-03-20 16:22:34.460000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.855574748112 0.614188268256 0.170278695595 0.0653017136933 0.00865692600032 114.514444731 2015-03-20 16:22:34.460000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 8.53027210093e-05 2.45546465604e-06 1.39445596973e-08 1.62248175755e-10 5.86269295618e-13 1.70570078883e+12 2015-03-20 16:22:34.460000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 0.996272578742 0.923373807169 0.799050070444 0.568540386092 0.336148127841 0.0838896019882 10.9204284715 2015-03-20 16:22:34.460000
|
||||
149 Montana 16 Oklahoma City 1 1 0.0037274212578 0.000409736251338 5.27030140025e-05 3.93981195763e-06 1.98090941527e-07 2.8893509949e-09 346098483.318 2015-03-20 16:22:34.460000
|
||||
135 Minnesota 8 Oklahoma City 1 1 0.229224903064 0.00711405163776 0.00235076270895 0.000468191409727 6.37295086236e-05 2.59084752841e-06 385973.083397 2015-03-20 16:22:34.460000
|
||||
305 DePaul 9 Oklahoma City 1 1 0.770775096936 0.0691024049417 0.0357482297826 0.0117765550511 0.00286412380279 0.000220750864716 4528.99358027 2015-03-20 16:22:34.460000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0271568807068 0.00938542367725 0.00175480514836 9.99978094824e-05 9999.21905656 2015-03-20 16:22:34.460000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.0013333387571 0.000186542890497 2.14542943393e-05 7.28962587791e-07 1371811.51377 2015-03-20 16:22:34.460000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.133413097234 0.0457266981148 0.0109512439099 0.000821937087173 1215.63812913 2015-03-20 16:22:34.460000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000894917351952 9.21080497775e-05 6.35061784778e-06 1.26406162051e-07 7911005.74032 2015-03-20 16:22:34.460000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:22:34.460000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.192185651133 0.0220198469567 0.00222050071163 0.000377513481502 1.94974702122e-05 51287.7051047 2015-03-20 16:22:34.460000
|
||||
2294 Iowa 3 Oklahoma City 1 1 0.940678599289 0.789734879538 0.188122481285 0.0376900566879 0.00810822291161 0.00053739511936 1859.82821368 2015-03-20 16:22:34.460000
|
||||
44 American University 14 Oklahoma City 1 1 0.0593214007107 0.0180794693284 0.000870358197329 3.91471555402e-05 2.6194211749e-06 5.07258702653e-08 19713805.6783 2015-03-20 16:22:34.460000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:22:34.460000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0276906674583 0.00364917249577 0.000483027155224 1.88760275078e-05 52976.2485015 2015-03-20 16:22:34.460000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.761296646103 0.320221277852 0.133645832235 0.0200323636387 48.9192216174 2015-03-20 16:22:34.460000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:22:34.460000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-03.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-03.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.980070296378 0.956880359397 0.877086869411 0.734259517471 0.361916292818 2015-03-20 16:40:11.330000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.37144789528e-07 6.29699889217e-08 2.06448461072e-09 4.14306481192e-11 24136721131.7 2015-03-20 16:40:11.330000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00454386884273 0.0023343837074 0.000692724576662 0.000130461820221 7664.07778526 2015-03-20 16:40:11.330000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000905651974974 0.000348584677443 7.18689408801e-05 9.16260598592e-06 109138.255965 2015-03-20 16:40:11.330000
|
||||
251 Texas 5 Albany 1 1 0.766968929146 0.309514835437 0.00582903452199 0.00279185901921 0.00101536659663 0.00024025843204 4161.18482536 2015-03-20 16:40:11.330000
|
||||
98 Western Kentucky 12 Albany 1 1 0.233031070854 0.0474320408344 0.00041159122107 0.000129836701793 2.85687421017e-05 3.91510066253e-06 255420.27424 2015-03-20 16:40:11.330000
|
||||
25 California 4 Albany 1 1 0.871403520417 0.604168526206 0.00799467698905 0.00318411310994 0.000892665947717 0.000157085071857 6364.97728974 2015-03-20 16:40:11.330000
|
||||
2724 Wichita State 13 Albany 1 1 0.128596479583 0.0388845975233 0.000243942926902 6.29957826064e-05 1.13557341215e-05 1.25996430176e-06 793672.279952 2015-03-20 16:40:11.330000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.199116484905 0.00499251495784 0.00222189315959 0.000664939200566 1502.89689636 2015-03-20 16:40:11.330000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0112644864639 0.000143444602822 3.14545756247e-05 4.28750161391e-06 233235.063808 2015-03-20 16:40:11.330000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.272340949816 0.0114171368285 0.00495464221962 0.0014353428989 695.697632855 2015-03-20 16:40:11.330000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00131345131286 8.59707824379e-06 9.77973181687e-07 6.73248690101e-08 14853351.3303 2015-03-20 16:40:11.330000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.110581112793 0.00256298815476 0.000729149089361 0.00013100536166 7632.27536618 2015-03-20 16:40:11.330000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 16:40:11.330000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.40538351471 0.0151431230128 0.00614182112815 0.00165332802296 603.840652378 2015-03-20 16:40:11.330000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 16:40:11.330000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.849860700812 0.65738660866 0.380774611498 0.0502098862938 0.0220359524223 44.3803847837 2015-03-20 16:40:11.330000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 0.000104863250993 8.10009053161e-06 3.29377628934e-07 1.46026058431e-09 3.93427013628e-11 25417675078.8 2015-03-20 16:40:11.330000
|
||||
163 Princeton 8 Spokane 1 1 0.725710552549 0.127650575674 0.0707460261731 0.024596645639 0.00150057407212 0.000380329856528 2628.29660355 2015-03-20 16:40:11.330000
|
||||
2739 Green Bay 9 Spokane 1 1 0.274289447451 0.0223838602631 0.00986291156804 0.00258563914458 9.53558048578e-05 1.62373618076e-05 61585.3594005 2015-03-20 16:40:11.330000
|
||||
344 Mississippi State 5 Spokane 1 1 0.753002373256 0.177252731641 0.0373769384193 0.00974554505788 0.000441292047518 8.84610938875e-05 11303.4046377 2015-03-20 16:40:11.330000
|
||||
2655 Tulane 12 Spokane 1 1 0.246997626744 0.0249298058609 0.00248161430471 0.000334712915867 7.52913380154e-06 8.48152165896e-07 1179032.71613 2015-03-20 16:40:11.330000
|
||||
150 Duke 4 Spokane 1 1 1 0.797817462498 0.222137800784 0.0730758486511 0.00445273604786 0.00111266634769 897.742019181 2015-03-20 16:40:11.330000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 16:40:11.330000
|
||||
45 George Washington 6 Spokane 1 1 0.521564039532 0.0853869107593 0.0176179004014 0.00428615040006 0.000159607205148 2.72974141541e-05 36632.5065422 2015-03-20 16:40:11.330000
|
||||
2250 Gonzaga 11 Spokane 1 1 0.478435960468 0.0739666171335 0.0190854787325 0.00571435090669 9.59302214274e-05 8.24748397553e-06 121248.098873 2015-03-20 16:40:11.330000
|
||||
204 Oregon State 3 Spokane 1 1 0.943924351269 0.821216319831 0.35602933974 0.168419913726 0.00834464079795 0.00177440327566 562.569744103 2015-03-20 16:40:11.330000
|
||||
2571 South Dakota State 14 Spokane 1 1 0.0560756487311 0.019430152276 0.00235244035046 0.000349671584957 5.35222546083e-06 4.29343667395e-07 2329135.48422 2015-03-20 16:40:11.330000
|
||||
236 Chattanooga 7 Spokane 1 1 0.594661346014 0.0484145578475 0.0104689362883 0.00193109440349 5.48083732798e-05 7.47497653393e-06 133778.684185 2015-03-20 16:40:11.330000
|
||||
221 Pittsburgh 10 Spokane 1 1 0.405338653986 0.0241407424686 0.00467786878126 0.000776257720523 1.773428983e-05 2.01390629436e-06 496546.432618 2015-03-20 16:40:11.330000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.926160249034 0.58962546838 0.327395365584 0.0407351026787 0.0172026986212 57.1304144203 2015-03-20 16:40:11.330000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.00128445065034 0.000142567325982 1.38633909024e-05 8.91885452365e-08 3.32670981449e-09 300597302.571 2015-03-20 16:40:11.330000
|
||||
2579 South Carolina 1 Greensboro 1 1 0.998464762569 0.950751949394 0.80716522063 0.673138113314 0.40276899566 0.100813769511 8.91927992423 2015-03-20 16:40:11.330000
|
||||
2542 Savannah State 16 Greensboro 1 1 0.00153523743091 0.000117091082996 4.91172673496e-06 2.6050358296e-07 6.65757353855e-09 5.13933217459e-11 19457781010.8 2015-03-20 16:40:11.330000
|
||||
183 Syracuse 8 Greensboro 1 1 0.520689842326 0.0264743105991 0.010318684981 0.00412108578889 0.000782558280871 4.61882739691e-05 21649.5167668 2015-03-20 16:40:11.330000
|
||||
158 Nebraska 9 Greensboro 1 1 0.479310157674 0.022656648924 0.00821022871656 0.00306922141082 0.000585364028724 3.47641473511e-05 28764.2675586 2015-03-20 16:40:11.330000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.199865745582 0.0284260900936 0.0132056832403 0.00299558618019 0.000215009105092 4649.96582572 2015-03-20 16:40:11.330000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.108781006481 0.0116472807481 0.00453578685573 0.000778324841797 4.10493318986e-05 24359.9324135 2015-03-20 16:40:11.330000
|
||||
153 North Carolina 4 Greensboro 1 1 0.950177253997 0.683542934425 0.134010474861 0.0745999412127 0.0198639744106 0.00170054355308 587.047273583 2015-03-20 16:40:11.330000
|
||||
2335 Liberty 13 Greensboro 1 1 0.0498227460031 0.00781031351205 0.000217108242921 3.2150224163e-05 1.74379304056e-06 2.80039217939e-08 35709283.1267 2015-03-20 16:40:11.330000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0829301113889 0.0129398608001 0.00288141449119 0.000202211134764 4944.32608784 2015-03-20 16:40:11.330000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00415722909664 0.000282334699997 2.91136958394e-05 8.98240817992e-07 1113286.19422 2015-03-20 16:40:11.330000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.232717907839 0.0356638160993 0.00757806702088 0.000500909026463 1995.37049278 2015-03-20 16:40:11.330000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169038385354 0.000104252279601 8.29980807655e-06 1.96478251957e-07 5089620.82857 2015-03-20 16:40:11.330000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 0.593289458875 0.0952876811442 0.0440874163211 0.00577021058084 0.00131837859653 9.57392494492e-05 10444.0369702 2015-03-20 16:40:11.330000
|
||||
197 Oklahoma State 10 Greensboro 1 1 0.406710541125 0.0490522680227 0.02022622778 0.00225857345005 0.000360727948308 1.76411918902e-05 56684.512307 2015-03-20 16:40:11.330000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.855574748112 0.614188268256 0.170278695595 0.0652291037744 0.00869885334953 113.957680032 2015-03-20 16:40:11.330000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 8.53027210093e-05 2.45546465604e-06 1.39445596973e-08 1.6284125264e-10 5.91819000072e-13 1.68970580512e+12 2015-03-20 16:40:11.330000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 0.996272578742 0.923373807169 0.799050070444 0.568635972998 0.336250948392 0.0842717715373 10.8663697435 2015-03-20 16:40:11.330000
|
||||
149 Montana 16 Oklahoma City 1 1 0.0037274212578 0.000409736251338 5.27030140025e-05 3.99746474304e-06 2.01201539063e-07 2.95744365277e-09 338129856.204 2015-03-20 16:40:11.330000
|
||||
135 Minnesota 8 Oklahoma City 1 1 0.229224903064 0.00711405163776 0.00235076270895 0.000472712628071 6.43806532869e-05 2.63672261849e-06 379257.702826 2015-03-20 16:40:11.330000
|
||||
305 DePaul 9 Oklahoma City 1 1 0.770775096936 0.0691024049417 0.0357482297826 0.0118426300821 0.00288128147488 0.000223597625008 4471.31941736 2015-03-20 16:40:11.330000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0271568807068 0.00943294998866 0.00176442255041 0.000101262494972 9874.32452437 2015-03-20 16:40:11.330000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.0013333387571 0.000188728712793 2.17206870429e-05 7.43612679826e-07 1344785.1059 2015-03-20 16:40:11.330000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.133413097234 0.045962508107 0.0110117308526 0.000832156771169 1200.69664497 2015-03-20 16:40:11.330000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000894917351952 9.33295957977e-05 6.44051017901e-06 1.29181856328e-07 7741024.15963 2015-03-20 16:40:11.330000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:40:11.330000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.00214126500019 0.000373063180566 1.99653854279e-05 50085.686461 2015-03-20 16:40:11.330000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0336022176759 0.00667254278195 0.000403913705394 2474.77635184 2015-03-20 16:40:11.330000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:40:11.330000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:40:11.330000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.00373768955419 0.000497045410748 1.96602130687e-05 50863.1486491 2015-03-20 16:40:11.330000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.323885998192 0.135274562954 0.0204086647033 47.9987960769 2015-03-20 16:40:11.330000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:40:11.330000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-04.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-04.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.980070296378 0.956880359397 0.877136822196 0.734300958596 0.361839431494 2015-03-20 16:57:41.080000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.37144789528e-07 6.29699889217e-08 2.06650548638e-09 4.14643493634e-11 24117103374.6 2015-03-20 16:57:41.080000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00454386884273 0.0023343837074 0.000693155970247 0.000130526953802 7660.25287438 2015-03-20 16:57:41.080000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000905651974974 0.000348584677443 7.19201560878e-05 9.16784920861e-06 109075.83768 2015-03-20 16:57:41.080000
|
||||
251 Texas 5 Albany 1 1 0.766968929146 0.309514835437 0.00582903452199 0.00279185901921 0.00101590782757 0.000240360478608 4159.41774335 2015-03-20 16:57:41.080000
|
||||
98 Western Kentucky 12 Albany 1 1 0.233031070854 0.0474320408344 0.00041159122107 0.000129836701793 2.85886776281e-05 3.91729255223e-06 255277.35531 2015-03-20 16:57:41.080000
|
||||
25 California 4 Albany 1 1 0.871403520417 0.604168526206 0.00799467698905 0.00318411310994 0.000893235851173 0.000157165535708 6361.71810797 2015-03-20 16:57:41.080000
|
||||
2724 Wichita State 13 Albany 1 1 0.128596479583 0.0388845975233 0.000243942926902 6.29957826064e-05 1.13641651312e-05 1.26071826828e-06 793197.627448 2015-03-20 16:57:41.080000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.199116484905 0.00499251495784 0.00222288025768 0.000665175300444 1502.36309741 2015-03-20 16:57:41.080000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0112644864639 0.000143444602822 3.14765498129e-05 4.28990449922e-06 233104.422319 2015-03-20 16:57:41.080000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.272340949816 0.0114171368285 0.00495690015172 0.00143586661835 695.443518652 2015-03-20 16:57:41.080000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00131345131286 8.59707824379e-06 9.78787798952e-07 6.73707786142e-08 14843229.5603 2015-03-20 16:57:41.080000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.110581112793 0.00256298815476 0.000729611764347 0.000131071993294 7628.39492159 2015-03-20 16:57:41.080000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 16:57:41.080000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.40538351471 0.0151431230128 0.00614480502969 0.00165396691499 603.607015373 2015-03-20 16:57:41.080000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 16:57:41.080000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.849860700812 0.656409175262 0.380176492496 0.0501231030846 0.0219954496597 44.463948929 2015-03-20 16:57:41.080000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 0.000104863250993 7.88752162897e-06 3.21941789035e-07 1.43309894078e-09 3.87644447417e-11 25796835389.4 2015-03-20 16:57:41.080000
|
||||
163 Princeton 8 Spokane 1 1 0.725710552549 0.127650575674 0.0704515295396 0.0245018758482 0.00149544221647 0.00037916509014 2636.37360322 2015-03-20 16:57:41.080000
|
||||
2739 Green Bay 9 Spokane 1 1 0.274289447451 0.0223838602631 0.00979917899741 0.00257075289346 9.48951071251e-05 1.61721706023e-05 61833.6185302 2015-03-20 16:57:41.080000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0485530747506 0.0125290203457 0.00055985667316 0.000110952736448 9011.84665899 2015-03-20 16:57:41.080000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 16:57:41.080000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.214779153929 0.0710179180152 0.00435762726005 0.00109521149033 912.065657942 2015-03-20 16:57:41.080000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 16:57:41.080000
|
||||
45 George Washington 6 Spokane 1 1 0.521564039532 0.0853869107593 0.0176179004014 0.00428964862652 0.000159694313447 2.7305810998e-05 36621.241327 2015-03-20 16:57:41.080000
|
||||
2250 Gonzaga 11 Spokane 1 1 0.478435960468 0.0739666171335 0.0190854787325 0.00571945702684 9.5985002425e-05 8.24969623081e-06 121215.584468 2015-03-20 16:57:41.080000
|
||||
204 Oregon State 3 Spokane 1 1 0.943924351269 0.821216319831 0.35602933974 0.168536822839 0.00834810876211 0.00177471829918 562.469706973 2015-03-20 16:57:41.080000
|
||||
2571 South Dakota State 14 Spokane 1 1 0.0560756487311 0.019430152276 0.00235244035046 0.000349835798017 5.35376615778e-06 4.29393757823e-07 2328863.78152 2015-03-20 16:57:41.080000
|
||||
236 Chattanooga 7 Spokane 1 1 0.594661346014 0.0484145578475 0.0104689362883 0.00193230025779 5.48303532645e-05 7.47646459916e-06 133752.057577 2015-03-20 16:57:41.080000
|
||||
221 Pittsburgh 10 Spokane 1 1 0.405338653986 0.0241407424686 0.00467786878126 0.000776682268745 1.77403982387e-05 2.01422512877e-06 496467.833457 2015-03-20 16:57:41.080000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.926160249034 0.58962546838 0.327585006157 0.0407496229829 0.0172061155295 57.1188704846 2015-03-20 16:57:41.080000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.00128445065034 0.000142567325982 1.38654847199e-05 8.91952334204e-08 3.32671355419e-09 300596964.657 2015-03-20 16:57:41.080000
|
||||
2579 South Carolina 1 Greensboro 1 1 0.998464762569 0.950751949394 0.80716522063 0.673138113314 0.40276899566 0.100809174913 8.91973201711 2015-03-20 16:57:41.080000
|
||||
2542 Savannah State 16 Greensboro 1 1 0.00153523743091 0.000117091082996 4.91172673496e-06 2.6050358296e-07 6.65757353855e-09 5.14011971794e-11 19454799787.2 2015-03-20 16:57:41.080000
|
||||
183 Syracuse 8 Greensboro 1 1 0.520689842326 0.0264743105991 0.010318684981 0.00412108578889 0.000782558280871 4.61891751672e-05 21649.0943431 2015-03-20 16:57:41.080000
|
||||
158 Nebraska 9 Greensboro 1 1 0.479310157674 0.022656648924 0.00821022871656 0.00306922141082 0.000585364028724 3.47648123743e-05 28763.7173019 2015-03-20 16:57:41.080000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.199865745582 0.0284260900936 0.0132056832403 0.00299558618019 0.000215010675184 4649.93186255 2015-03-20 16:57:41.080000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.108781006481 0.0116472807481 0.00453578685573 0.000778324841797 4.10504217734e-05 24359.2856389 2015-03-20 16:57:41.080000
|
||||
153 North Carolina 4 Greensboro 1 1 0.950177253997 0.683542934425 0.134010474861 0.0745999412127 0.0198639744106 0.00170053332569 587.050810232 2015-03-20 16:57:41.080000
|
||||
2335 Liberty 13 Greensboro 1 1 0.0498227460031 0.00781031351205 0.000217108242921 3.2150224163e-05 1.74379304056e-06 2.8006912624e-08 35705469.768 2015-03-20 16:57:41.080000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0829301113889 0.0129398608001 0.00288141449119 0.000202212923176 4944.28235038 2015-03-20 16:57:41.080000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00415722909664 0.000282334699997 2.91136958394e-05 8.98296827458e-07 1113216.77995 2015-03-20 16:57:41.080000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.232717907839 0.0356638160993 0.00757806702088 0.000500915337833 1995.34533917 2015-03-20 16:57:41.080000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169038385354 0.000104252279601 8.29980807655e-06 1.96494081558e-07 5089210.80766 2015-03-20 16:57:41.080000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 0.593289458875 0.0952876811442 0.0440874163211 0.00577021058084 0.00131837859653 9.57398706123e-05 10443.9692025 2015-03-20 16:57:41.080000
|
||||
197 Oklahoma State 10 Greensboro 1 1 0.406710541125 0.0490522680227 0.02022622778 0.00225857345005 0.000360727948308 1.76417454065e-05 56682.7337779 2015-03-20 16:57:41.080000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.855574748112 0.614188268256 0.170278695595 0.0652291037744 0.00869859964156 113.961032949 2015-03-20 16:57:41.080000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 8.53027210093e-05 2.45546465604e-06 1.39445596973e-08 1.6284125264e-10 5.91934546918e-13 1.68937597105e+12 2015-03-20 16:57:41.080000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 0.996272578742 0.923373807169 0.799050070444 0.568635972998 0.336250948392 0.0842679307353 10.8669105943 2015-03-20 16:57:41.080000
|
||||
149 Montana 16 Oklahoma City 1 1 0.0037274212578 0.000409736251338 5.27030140025e-05 3.99746474304e-06 2.01201539063e-07 2.95777682979e-09 338091767.767 2015-03-20 16:57:41.080000
|
||||
135 Minnesota 8 Oklahoma City 1 1 0.229224903064 0.00711405163776 0.00235076270895 0.000472712628071 6.43806532869e-05 2.63683604243e-06 379241.388949 2015-03-20 16:57:41.080000
|
||||
305 DePaul 9 Oklahoma City 1 1 0.770775096936 0.0691024049417 0.0357482297826 0.0118426300821 0.00288128147488 0.000223597983317 4471.3122506 2015-03-20 16:57:41.080000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0271568807068 0.00943294998866 0.00176442255041 0.000101264646354 9874.11472175 2015-03-20 16:57:41.080000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.0013333387571 0.000188728712793 2.17206870429e-05 7.43653726713e-07 1344710.87877 2015-03-20 16:57:41.080000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.133413097234 0.045962508107 0.0110117308526 0.000832159765148 1200.69232145 2015-03-20 16:57:41.080000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000894917351952 9.33295957977e-05 6.44051017901e-06 1.29193723322e-07 7740313.11348 2015-03-20 16:57:41.080000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:57:41.080000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.00214126500019 0.000373063180566 1.99658970445e-05 50084.4030136 2015-03-20 16:57:41.080000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0336022176759 0.00667254278195 0.000403920957381 2474.73190182 2015-03-20 16:57:41.080000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:57:41.080000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:57:41.080000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.00373768955419 0.000497045410748 1.96611046821e-05 50860.8420059 2015-03-20 16:57:41.080000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.323885998192 0.135274562954 0.0204079710781 48.0004614459 2015-03-20 16:57:41.080000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 16:57:41.080000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-05.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-05.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.98005147013 0.956861978606 0.87704219068 0.738717515262 0.353697427419 2015-03-20 19:24:54.120000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.14157172557e-07 6.16920924439e-08 2.05643999741e-09 4.3104972906e-11 23199179411.1 2015-03-20 19:24:54.120000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00452574641381 0.00232837898775 0.000695504429187 0.000135122575799 7399.68781318 2015-03-20 19:24:54.120000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000898830797716 0.00034669382098 7.21158724322e-05 9.51546449406e-06 105091.08464 2015-03-20 19:24:54.120000
|
||||
251 Texas 5 Albany 1 1 1 0.381451803408 0.0064648427081 0.00293039068871 0.00100413635647 0.00022620180314 4419.83124944 2015-03-20 19:24:54.120000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
25 California 4 Albany 1 1 0.871403520417 0.584440214265 0.00783823607722 0.00314605806199 0.000894175526769 0.000163711404685 6107.30993676 2015-03-20 19:24:54.120000
|
||||
2724 Wichita State 13 Albany 1 1 0.128596479583 0.0341079823278 0.000219959715607 5.78744051501e-05 1.07177981309e-05 1.25629401253e-06 795991.013038 2015-03-20 19:24:54.120000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.199116484905 0.0050034366218 0.00223160034609 0.00068478652257 1459.30911392 2015-03-20 19:24:54.120000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0112644864639 0.000143806472823 3.17367133625e-05 4.4642025354e-06 224003.173662 2015-03-20 19:24:54.120000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.272340949816 0.0114347757927 0.0049733945556 0.00147764605997 675.752049822 2015-03-20 19:24:54.120000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00131345131286 8.61944585596e-06 9.8965544054e-07 7.05795375726e-08 14168411.4662 2015-03-20 19:24:54.120000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.110581112793 0.00256866571219 0.000734449053443 0.000135891804785 7357.7954887 2015-03-20 19:24:54.120000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.40538351471 0.015169259692 0.00616876687974 0.00170432105133 585.743911434 2015-03-20 19:24:54.120000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.849860700812 0.656409175262 0.382392933696 0.0504522040193 0.0226011458685 43.2455442666 2015-03-20 19:24:54.120000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 0.000104863250993 7.88752162897e-06 3.23704531648e-07 1.44731944086e-09 4.07780094208e-11 24523021456.0 2015-03-20 19:24:54.120000
|
||||
163 Princeton 8 Spokane 1 1 0.725710552549 0.127650575674 0.0704515295396 0.0247131484024 0.00151085832636 0.000393628961437 2539.46347695 2015-03-20 19:24:54.120000
|
||||
2739 Green Bay 9 Spokane 1 1 0.274289447451 0.0223838602631 0.00979917899741 0.00259336141196 9.59408480149e-05 1.68592258846e-05 59313.7044144 2015-03-20 19:24:54.120000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0485530747506 0.0126392060398 0.000565970566986 0.000115523404243 8655.25460532 2015-03-20 19:24:54.120000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.214779153929 0.0716345250003 0.00440269680354 0.00113709350007 878.435156336 2015-03-20 19:24:54.120000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
45 George Washington 6 Spokane 1 1 0.521564039532 0.0743396219452 0.0157269386603 0.00392471947171 0.000151004664521 2.73477899832e-05 36565.0260158 2015-03-20 19:24:54.120000
|
||||
2250 Gonzaga 11 Spokane 1 1 0.478435960468 0.0638511253792 0.0168784500011 0.00517839314035 9.01952370142e-05 8.28983710389e-06 120628.632099 2015-03-20 19:24:54.120000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861809252676 0.359754293287 0.164486548951 0.00765493337761 0.00158564236593 629.659234067 2015-03-20 19:24:54.120000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
236 Chattanooga 7 Spokane 1 1 0.594661346014 0.0484145578475 0.0102719228147 0.00190951252877 5.47108576438e-05 7.7549459735e-06 128948.963471 2015-03-20 19:24:54.120000
|
||||
221 Pittsburgh 10 Spokane 1 1 0.405338653986 0.0241407424686 0.00457630602091 0.000765667176622 1.76703993953e-05 2.08915398242e-06 478661.658864 2015-03-20 19:24:54.120000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.926160249034 0.592654599003 0.329748154571 0.0411439454864 0.0177724865689 55.2667467 2015-03-20 19:24:54.120000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.00128445065034 0.000137490213292 1.35059053488e-05 8.80426136041e-08 3.44637682666e-09 290159795.881 2015-03-20 19:24:54.120000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.948952350666 0.797698932628 0.658165816016 0.385164551266 0.0924289439992 9.81912176784 2015-03-20 19:24:54.120000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
183 Syracuse 8 Greensboro 1 1 0.520689842326 0.027524882836 0.0107752992935 0.00432171067829 0.000831046853767 4.93348331759e-05 20268.6540279 2015-03-20 19:24:54.120000
|
||||
158 Nebraska 9 Greensboro 1 1 0.479310157674 0.0235227664983 0.00856659141684 0.0032178787696 0.000621779962891 3.71624465352e-05 26907.8849964 2015-03-20 19:24:54.120000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.199865745582 0.0298990344912 0.0138943177269 0.00317369580333 0.000227716076736 4390.43346545 2015-03-20 19:24:54.120000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.108781006481 0.0122725155511 0.00478160484696 0.000827026150723 4.36160909315e-05 22926.3183049 2015-03-20 19:24:54.120000
|
||||
153 North Carolina 4 Greensboro 1 1 0.950177253997 0.683542934425 0.140558302958 0.0782578131378 0.0209679421372 0.00179394159973 556.431747025 2015-03-20 19:24:54.120000
|
||||
2335 Liberty 13 Greensboro 1 1 0.0498227460031 0.00781031351205 0.000229323661472 3.40170968732e-05 1.86669653698e-06 3.00357691825e-08 33293636.1273 2015-03-20 19:24:54.120000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0829301113889 0.0135626139244 0.0030399152788 0.000213150891536 4690.51216209 2015-03-20 19:24:54.120000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00415722909664 0.000297096004799 3.09039673207e-05 9.53179882402e-07 1049118.91793 2015-03-20 19:24:54.120000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.232717907839 0.0373846971977 0.0079970195752 0.000528155539271 1892.38163788 2015-03-20 19:24:54.120000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169038385354 0.000109735697653 8.81774486172e-06 2.08711746543e-07 4791296.16734 2015-03-20 19:24:54.120000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 0.593289458875 0.0952876811442 0.0440874163211 0.00605454632678 0.00139238308025 0.000101030901263 9896.96178697 2015-03-20 19:24:54.120000
|
||||
197 Oklahoma State 10 Greensboro 1 1 0.406710541125 0.0490522680227 0.02022622778 0.00237188684989 0.000381696376781 1.86543043016e-05 53605.9308098 2015-03-20 19:24:54.120000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.855574748112 0.614188268256 0.177546251004 0.0683153141409 0.00910062333306 108.882583138 2015-03-20 19:24:54.120000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 8.53027210093e-05 2.45546465604e-06 1.47221256891e-08 1.74079663012e-10 6.33704601459e-13 1.5780223115e+12 2015-03-20 19:24:54.120000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 0.996272578742 0.914022707752 0.791078870669 0.563136832885 0.341619144364 0.0856245182209 10.6788978295 2015-03-20 19:24:54.120000
|
||||
149 Montana 16 Oklahoma City 1 1 0.0037274212578 0.000313959580222 4.14482886628e-05 3.23262541114e-06 1.75576426477e-07 2.66615022375e-09 375072637.853 2015-03-20 19:24:54.120000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.085663332668 0.0432463268157 0.0138995533426 0.00339770873413 0.000252392947704 3961.07583888 2015-03-20 19:24:54.120000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0276280825786 0.00959016032414 0.00186752322081 0.000107013551826 9343.6108735 2015-03-20 19:24:54.120000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.00136088881849 0.00019269986082 2.31791114118e-05 7.93752926425e-07 1259836.87487 2015-03-20 19:24:54.120000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.135731010453 0.0467284444532 0.0116339015636 0.000877686116693 1138.35948283 2015-03-20 19:24:54.120000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000913372376004 9.53370635863e-05 6.89268921508e-06 1.38426598745e-07 7224044.15508 2015-03-20 19:24:54.120000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.00217637563095 0.000394993873239 2.11108489273e-05 47368.0093393 2015-03-20 19:24:54.120000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0340641825765 0.00703946578869 0.000425461539904 2349.38871017 2015-03-20 19:24:54.120000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.00379509542528 0.000526461362202 2.07976235913e-05 48081.4165131 2015-03-20 19:24:54.120000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.326318085812 0.140736594507 0.0211981941835 46.1738295887 2015-03-20 19:24:54.120000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 19:24:54.120000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-06.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-06.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.98005147013 0.956861978606 0.87704219068 0.738824483877 0.353501436163 2015-03-20 21:42:13.690000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.14157172557e-07 6.16920924439e-08 2.05643999741e-09 4.30786402834e-11 23213360342.3 2015-03-20 21:42:13.690000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00452574641381 0.00232837898775 0.000695504429187 0.000135115499695 7400.07539298 2015-03-20 21:42:13.690000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000898830797716 0.00034669382098 7.21158724322e-05 9.51389878957e-06 105108.379668 2015-03-20 21:42:13.690000
|
||||
251 Texas 5 Albany 1 1 1 0.381451803408 0.0064648427081 0.00293039068871 0.00100413635647 0.000226199816647 4419.87007331 2015-03-20 21:42:13.690000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
25 California 4 Albany 1 1 0.871403520417 0.584440214265 0.00783823607722 0.00314605806199 0.000894175526769 0.000163700129853 6107.73064607 2015-03-20 21:42:13.690000
|
||||
2724 Wichita State 13 Albany 1 1 0.128596479583 0.0341079823278 0.000219959715607 5.78744051501e-05 1.07177981309e-05 1.25604460826e-06 796149.067777 2015-03-20 21:42:13.690000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.199116484905 0.0050034366218 0.00223160034609 0.000684850651595 1459.17237141 2015-03-20 21:42:13.690000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0112644864639 0.000143806472823 3.17367133625e-05 4.46355102612e-06 224035.869781 2015-03-20 21:42:13.690000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.272340949816 0.0114347757927 0.0049733945556 0.0014777684221 675.696013424 2015-03-20 21:42:13.690000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00131345131286 8.61944585596e-06 9.8965544054e-07 7.05559719627e-08 14173143.6989 2015-03-20 21:42:13.690000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.110581112793 0.00256866571219 0.000734449053443 0.000135882838693 7358.28105138 2015-03-20 21:42:13.690000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.40538351471 0.015169259692 0.00616876687974 0.00170442043577 585.709698507 2015-03-20 21:42:13.690000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.849860700812 0.656409175262 0.382392933696 0.0504522040193 0.0226059982238 43.236047004 2015-03-20 21:42:13.690000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 0.000104863250993 7.88752162897e-06 3.23704531648e-07 1.44731944086e-09 4.07555268357e-11 24536549459.7 2015-03-20 21:42:13.690000
|
||||
163 Princeton 8 Spokane 1 1 0.725710552549 0.127650575674 0.0704515295396 0.0247131484024 0.00151085832636 0.000393644143556 2539.36549602 2015-03-20 21:42:13.690000
|
||||
2739 Green Bay 9 Spokane 1 1 0.274289447451 0.0223838602631 0.00979917899741 0.00259336141196 9.59408480149e-05 1.6857872711e-05 59318.4655782 2015-03-20 21:42:13.690000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0485530747506 0.0126392060398 0.000565970566986 0.000115518985969 8655.58568254 2015-03-20 21:42:13.690000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.214779153929 0.0716345250003 0.00440269680354 0.00113713403561 878.40380701 2015-03-20 21:42:13.690000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
45 George Washington 6 Spokane 1 1 0.521564039532 0.0743396219452 0.0157269386603 0.00392471947171 0.000151004664521 2.73458255735e-05 36567.6527661 2015-03-20 21:42:13.690000
|
||||
2250 Gonzaga 11 Spokane 1 1 0.478435960468 0.0638511253792 0.0168784500011 0.00517839314035 9.01952370142e-05 8.28762926288e-06 120660.768074 2015-03-20 21:42:13.690000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861809252676 0.359754293287 0.164486548951 0.00765493337761 0.00158558849859 629.680659508 2015-03-20 21:42:13.690000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
236 Chattanooga 7 Spokane 1 1 0.594661346014 0.0484145578475 0.0102719228147 0.00190951252877 5.47108576438e-05 7.75383154512e-06 128967.496953 2015-03-20 21:42:13.690000
|
||||
221 Pittsburgh 10 Spokane 1 1 0.405338653986 0.0241407424686 0.00457630602091 0.000765667176622 1.76703993953e-05 2.08874435448e-06 478755.530379 2015-03-20 21:42:13.690000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.926160249034 0.592654599003 0.329748154571 0.0411439454864 0.017776108228 55.2552830561 2015-03-20 21:42:13.690000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.00128445065034 0.000137490213292 1.35059053488e-05 8.80426136041e-08 3.44472348938e-09 290299061.634 2015-03-20 21:42:13.690000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.798982863016 0.659225161913 0.385944466025 0.0926229990144 9.79645455925 2015-03-20 21:42:13.690000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0186602529131 0.00721296539616 0.0013207994717 7.40625607783e-05 13501.0986244 2015-03-20 21:42:13.690000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.199865745582 0.0297866935241 0.0138506483638 0.00316552598388 0.000227412965488 4396.28666241 2015-03-20 21:42:13.690000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.108781006481 0.0122196627402 0.00476488557807 0.00082461308697 4.35533854838e-05 22959.3276276 2015-03-20 21:42:13.690000
|
||||
153 North Carolina 4 Greensboro 1 1 0.950177253997 0.683542934425 0.140122695116 0.0780475071281 0.0209217225737 0.00179176129524 557.110057771 2015-03-20 21:42:13.690000
|
||||
2335 Liberty 13 Greensboro 1 1 0.0498227460031 0.00781031351205 0.000227832690842 3.38522223283e-05 1.85889802889e-06 2.99808733987e-08 33354597.6704 2015-03-20 21:42:13.690000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0829301113889 0.013530135919 0.00303272830776 0.000212776207664 4698.7735836 2015-03-20 21:42:13.690000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00415722909664 0.000296186062416 3.07981296779e-05 9.50677854063e-07 1051880.02965 2015-03-20 21:42:13.690000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.232717907839 0.0372944577542 0.00797770178131 0.000527202535803 1895.80423004 2015-03-20 21:42:13.690000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169038385354 0.000109392593718 8.78577086876e-06 2.08129599134e-07 4804697.63085 2015-03-20 21:42:13.690000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 0.593289458875 0.0952876811442 0.0440874163211 0.00603905886274 0.0013889141445 0.000100842413483 9915.46238381 2015-03-20 21:42:13.690000
|
||||
197 Oklahoma State 10 Greensboro 1 1 0.406710541125 0.0490522680227 0.02022622778 0.0023655008996 0.000380614257658 1.86144408754e-05 53720.7317831 2015-03-20 21:42:13.690000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.855574748112 0.614188268256 0.177230232646 0.0682165676515 0.00909118152397 108.996703659 2015-03-20 21:42:13.690000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 8.53027210093e-05 2.45546465604e-06 1.46610062065e-08 1.7314919946e-10 6.31073613212e-13 1.58460119242e+12 2015-03-20 21:42:13.690000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.793302855772 0.564075866703 0.341489939162 0.0853666260353 10.7141797262 2015-03-20 21:42:13.690000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.042035390947 0.0135861950878 0.00333889282064 0.000250028218209 3998.54855961 2015-03-20 21:42:13.690000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0274692917853 0.00954210288645 0.00185799255149 0.000106601030346 9379.77236925 2015-03-20 21:42:13.690000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.00134407630169 0.000190637252975 2.29461671689e-05 7.87428243898e-07 1269955.98687 2015-03-20 21:42:13.690000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.134948333749 0.0464930438767 0.0115734670205 0.000874165141128 1142.94861217 2015-03-20 21:42:13.690000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000900051444882 9.41362651423e-05 6.81328140671e-06 1.37172922852e-07 7290067.47131 2015-03-20 21:42:13.690000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.00216774102773 0.000393203873402 2.10296829695e-05 47550.8343024 2015-03-20 21:42:13.690000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0339707328402 0.00701582683969 0.000424298549248 2355.83106099 2015-03-20 21:42:13.690000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.00378193683536 0.000524334758566 2.07280109425e-05 48242.8957975 2015-03-20 21:42:13.690000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.326097607224 0.14056148727 0.0211799483293 46.2144683477 2015-03-20 21:42:13.690000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 21:42:13.690000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-07.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-07.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.98006183715 0.956872100326 0.877283977367 0.739026586879 0.353131291559 2015-03-20 22:02:49.120000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.03978810283e-07 6.11827794653e-08 2.08957196329e-09 4.3767324013e-11 22848095525.8 2015-03-20 22:02:49.120000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00452201823883 0.00232776235478 0.000700207702124 0.000136015826531 7351.08560288 2015-03-20 22:02:49.120000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000897290933247 0.000346436149881 7.27997884458e-05 9.60327098479e-06 104130.186299 2015-03-20 22:02:49.120000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00580407243475 0.00266450309933 0.000931099226041 0.000213266977374 4687.95847033 2015-03-20 22:02:49.120000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00871387726445 0.00344906230479 0.000971373097128 0.000174368140811 5733.9926159 2015-03-20 22:02:49.120000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.199116484905 0.00500615369962 0.00224080215746 0.000687305667385 1453.95672079 2015-03-20 22:02:49.120000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0112644864639 0.000143913938089 3.2034846552e-05 4.49957703744e-06 222242.111226 2015-03-20 22:02:49.120000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.272340949816 0.0114375083207 0.0049931187073 0.00148280156372 673.39907299 2015-03-20 22:02:49.120000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00131345131286 8.62740398987e-06 1.00393077035e-06 7.14330439807e-08 13999122.4347 2015-03-20 22:02:49.120000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.110581112793 0.0025702091112 0.00073973335295 0.000136717093646 7313.37432829 2015-03-20 22:02:49.120000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.40538351471 0.0151736621087 0.00619614684065 0.00171086605173 583.499294372 2015-03-20 22:02:49.120000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.849860700812 0.656409175262 0.382330667416 0.0504417881794 0.0226003572647 43.247088145 2015-03-20 22:02:49.120000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 0.000104863250993 7.88752162897e-06 3.20685708087e-07 1.43684295333e-09 4.05082444689e-11 24686332697.7 2015-03-20 22:02:49.120000
|
||||
163 Princeton 8 Spokane 1 1 0.725710552549 0.127650575674 0.0704515295396 0.0246795275413 0.00150922159237 0.00039326124498 2541.83892136 2015-03-20 22:02:49.120000
|
||||
2739 Green Bay 9 Spokane 1 1 0.274289447451 0.0223838602631 0.00979917899741 0.00258667699442 9.57512205123e-05 1.68290645572e-05 59420.0092071 2015-03-20 22:02:49.120000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0485530747506 0.0126057747647 0.000564782393848 0.000115306339529 8671.5500444 2015-03-20 22:02:49.120000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.214779153929 0.0715226328412 0.00439704350876 0.00113580219429 879.434995658 2015-03-20 22:02:49.120000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 0.138814803531 0.0378178700115 0.0119471999361 0.000217822982395 2.08756494006e-05 47901.7014111 2015-03-20 22:02:49.120000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861185196469 0.359280747763 0.164180388759 0.00763468109116 0.00158001522441 631.905293918 2015-03-20 22:02:49.120000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
236 Chattanooga 7 Spokane 1 1 0.594661346014 0.0484145578475 0.00995570511793 0.00185642913116 5.34075404104e-05 7.59447801804e-06 131673.619062 2015-03-20 22:02:49.120000
|
||||
221 Pittsburgh 10 Spokane 1 1 0.405338653986 0.0241407424686 0.0044261285097 0.000743003129255 1.72230923796e-05 2.04330252424e-06 489402.790254 2015-03-20 22:02:49.120000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.926160249034 0.588387890433 0.327534389008 0.0409058926695 0.0176844960945 55.5467059199 2015-03-20 22:02:49.120000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.00128445065034 0.000131658164456 1.29897926492e-05 8.51866964893e-08 3.34979703946e-09 298525547.927 2015-03-20 22:02:49.120000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.798982863016 0.659225161913 0.385944466025 0.0925827129528 9.80115248416 2015-03-20 22:02:49.120000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0186602529131 0.00721296539616 0.0013207994717 7.40337745819e-05 13506.3485804 2015-03-20 22:02:49.120000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.199865745582 0.0297866935241 0.0138506483638 0.00316552598388 0.000227306051873 4398.35493032 2015-03-20 22:02:49.120000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.108781006481 0.0122196627402 0.00476488557807 0.00082461308697 4.35374428953e-05 22967.7352655 2015-03-20 22:02:49.120000
|
||||
153 North Carolina 4 Greensboro 1 1 0.950177253997 0.683542934425 0.140122695116 0.0780475071281 0.0209217225737 0.00179084995855 557.394071611 2015-03-20 22:02:49.120000
|
||||
2335 Liberty 13 Greensboro 1 1 0.0498227460031 0.00781031351205 0.000227832690842 3.38522223283e-05 1.85889802889e-06 2.99883232457e-08 33346311.5567 2015-03-20 22:02:49.120000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0829301113889 0.013530135919 0.00303272830776 0.000212677602671 4700.95256783 2015-03-20 22:02:49.120000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00415722909664 0.000296186062416 3.07981296779e-05 9.50564545902e-07 1052005.41483 2015-03-20 22:02:49.120000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.232717907839 0.0372944577542 0.00797770178131 0.000526967681669 1896.64958039 2015-03-20 22:02:49.120000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169038385354 0.000109392593718 8.78577086876e-06 2.08133908393e-07 4804598.15312 2015-03-20 22:02:49.120000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 0.593289458875 0.0952876811442 0.0440874163211 0.00603905886274 0.0013889141445 0.000100794711688 9920.15541834 2015-03-20 22:02:49.120000
|
||||
197 Oklahoma State 10 Greensboro 1 1 0.406710541125 0.0490522680227 0.02022622778 0.0023655008996 0.000380614257658 1.86082023899e-05 53738.7422409 2015-03-20 22:02:49.120000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.855574748112 0.614188268256 0.177230232646 0.0682165676515 0.00908633158071 109.055415777 2015-03-20 22:02:49.120000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 8.53027210093e-05 2.45546465604e-06 1.46610062065e-08 1.7314919946e-10 6.31871731148e-13 1.58259968077e+12 2015-03-20 22:02:49.120000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.793302855772 0.564075866703 0.341489939162 0.0853304790579 10.7191419882 2015-03-20 22:02:49.120000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.042035390947 0.0135861950878 0.00333889282064 0.000249907914811 4000.47390592 2015-03-20 22:02:49.120000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0274692917853 0.00954210288645 0.00185799255149 0.000106558710365 9383.49795962 2015-03-20 22:02:49.120000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.00134407630169 0.000190637252975 2.29461671689e-05 7.87292800134e-07 1270174.4669 2015-03-20 22:02:49.120000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.134948333749 0.0464930438767 0.0115734670205 0.000873742627026 1143.50178928 2015-03-20 22:02:49.120000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000900051444882 9.41362651423e-05 6.81328140671e-06 1.37188557092e-07 7289236.68275 2015-03-20 22:02:49.120000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.00216774102773 0.000393203873402 2.10218832288e-05 47568.47744 2015-03-20 22:02:49.120000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0339707328402 0.00701582683969 0.000424122179027 2356.8111437 2015-03-20 22:02:49.120000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.00378193683536 0.000524334758566 2.07230257489e-05 48254.5014948 2015-03-20 22:02:49.120000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.326097607224 0.14056148727 0.0211688247012 46.2392782365 2015-03-20 22:02:49.120000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-20 22:02:49.120000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-08.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-08.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.98006183715 0.956872100326 0.877394595537 0.73864028701 0.353838962736 2015-03-21 13:11:36.090000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.03978810283e-07 6.11827794653e-08 2.09057664193e-09 4.36378129885e-11 22915905529.5 2015-03-21 13:11:36.090000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00452201823883 0.00232776235478 0.000700913021207 0.000135665127849 7370.09097862 2015-03-21 13:11:36.090000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000897290933247 0.000346436149881 7.28706069764e-05 9.576980259e-06 104416.047227 2015-03-21 13:11:36.090000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00580407243475 0.00266450309933 0.000932064868249 0.000212743741726 4699.49079652 2015-03-21 13:11:36.090000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00871387726445 0.00344906230479 0.000972342375846 0.000173909871006 5749.10489177 2015-03-21 13:11:36.090000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.199116484905 0.00500615369962 0.00224304395974 0.000685693392312 1457.37776944 2015-03-21 13:11:36.090000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0112644864639 0.000143913938089 3.20661623329e-05 4.48733729143e-06 222848.305736 2015-03-21 13:11:36.090000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.272340949816 0.0114375083207 0.00499818309909 0.00147930008007 674.99536664 2015-03-21 13:11:36.090000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00131345131286 8.62740398987e-06 1.00478225334e-06 7.12276213965e-08 14039496.3241 2015-03-21 13:11:36.090000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.110581112793 0.0025702091112 0.000740473642953 0.000136360313289 7332.51204525 2015-03-21 13:11:36.090000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.40538351471 0.0151736621087 0.00620259061583 0.00170678448991 584.89705139 2015-03-21 13:11:36.090000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
120 Maryland 1 Spokane 1 1 0.997319192009 0.825499046567 0.638517887625 0.372038118294 0.0493479551143 0.0221350667124 44.1771848258 2015-03-21 13:11:36.090000
|
||||
166 New Mexico State 16 Spokane 1 1 0.00268080799056 7.5334268526e-05 5.81427974442e-06 2.40485117954e-07 1.11084858585e-09 3.2147481564e-11 31106635771.1 2015-03-21 13:11:36.090000
|
||||
163 Princeton 8 Spokane 1 1 1 0.174425619165 0.0958184921244 0.0331980022461 0.00201298363624 0.000519165843238 1925.16677893 2015-03-21 13:11:36.090000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0489922135125 0.012644396295 0.000566633512706 0.000115308313765 8671.40155846 2015-03-21 13:11:36.090000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.216665592458 0.0717790411718 0.0044123146292 0.00113586605625 879.385494836 2015-03-21 13:11:36.090000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 0.138814803531 0.0372624103012 0.0118734685921 0.000216710799092 2.07133130766e-05 48277.1289648 2015-03-21 13:11:36.090000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861185196469 0.355867153969 0.163726588301 0.00761804299158 0.00157196504297 635.1464617 2015-03-21 13:11:36.090000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0611716672101 0.0114810929997 0.0019900292136 4.74265360495e-05 5.74979696627e-06 173918.184602 2015-03-21 13:11:36.090000
|
||||
2633 Tennessee 2 Spokane 1 1 0.992433906218 0.937359658247 0.595240380515 0.332735429833 0.0414876858407 0.0178681038985 54.9656472607 2015-03-21 13:11:36.090000
|
||||
68 Boise State 15 Spokane 1 1 0.0075660937823 0.0014686745426 0.000148962214587 1.46855680547e-05 9.50671852218e-08 3.67833148199e-09 271862392.288 2015-03-21 13:11:36.090000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.810377009923 0.669125302183 0.391741613409 0.0939625202982 9.64254126886 2015-03-21 13:11:36.090000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0194906222143 0.00756848127431 0.00138862749078 7.80239445448e-05 12815.5783701 2015-03-21 13:11:36.090000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
194 Ohio State 5 Greensboro 1 1 0.595943391782 0.201580856668 0.0304472482078 0.0143152681865 0.00331049104567 0.000241160106959 4145.62280843 2015-03-21 13:11:36.090000
|
||||
256 James Madison 12 Greensboro 1 1 0.404056608218 0.107860119487 0.0123397315214 0.00488651181501 0.000859789598985 4.62877580502e-05 21602.9843389 2015-03-21 13:11:36.090000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.690559023845 0.127345388133 0.066749550242 0.0162256291428 0.00123007067802 811.961415851 2015-03-21 13:11:36.090000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0832130121894 0.0136969466499 0.00307056712701 0.00021538321282 4641.8873769 2015-03-21 13:11:36.090000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00416855592356 0.000301761769575 3.13948645619e-05 9.69768091911e-07 1031173.36874 2015-03-21 13:11:36.090000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.233510873771 0.0377597075651 0.00807833470782 0.000533742972485 1872.56096764 2015-03-21 13:11:36.090000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00169481214118 0.000111523813335 8.96252339798e-06 2.12519753032e-07 4705443.95621 2015-03-21 13:11:36.090000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.15840346909 0.0726348741306 0.00991968880858 0.00225474098105 0.000161318081912 6197.93311491 2015-03-21 13:11:36.090000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
52 Florida State 2 Greensboro 1 1 0.997526187777 0.841522591426 0.604775719328 0.175565244315 0.0677512668689 0.00905592516977 109.424940716 2015-03-21 13:11:36.090000
|
||||
2011 Alabama State 15 Greensboro 1 1 0.00247381222316 7.39394836194e-05 2.15251647422e-06 1.33773746242e-08 1.59922930894e-10 5.91231635526e-13 1.691384459e+12 2015-03-21 13:11:36.090000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.793302855772 0.564075866703 0.34053001252 0.0851182937281 10.7483558023 2015-03-21 13:11:36.090000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.042035390947 0.0135861950878 0.00333179910386 0.000249538107179 4006.40396449 2015-03-21 13:11:36.090000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0274692917853 0.00954210288645 0.00185504708497 0.000106462000514 9392.02281729 2015-03-21 13:11:36.090000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.00134407630169 0.000190637252975 2.29398187658e-05 7.87660592711e-07 1269581.3674 2015-03-21 13:11:36.090000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.134948333749 0.0464930438767 0.0115485493378 0.000872421727622 1145.2346344 2015-03-21 13:11:36.090000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000900051444882 9.41362651423e-05 6.82099332789e-06 1.37455834617e-07 7275063.04356 2015-03-21 13:11:36.090000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.00216774102773 0.000392650614177 2.1006746979e-05 47602.7532609 2015-03-21 13:11:36.090000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0339707328402 0.00700370302785 0.000423672757291 2359.3122523 2015-03-21 13:11:36.090000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.00378193683536 0.000523982278544 2.07241146148e-05 48251.966102 2015-03-21 13:11:36.090000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.326097607224 0.140063077301 0.0211045188878 46.3832170882 2015-03-21 13:11:36.090000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 13:11:36.090000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-09.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-09.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.98006183715 0.956872100326 0.892685980236 0.751587257226 0.330517501974 2015-03-21 17:38:04.640000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.03978810283e-07 6.11827794653e-08 2.48597141473e-09 5.1581809713e-11 19386679248.2 2015-03-21 17:38:04.640000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00452201823883 0.00232776235478 0.000794336056863 0.000153209801767 6525.99754498 2015-03-21 17:38:04.640000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000897290933247 0.000346436149881 8.37074810754e-05 1.09565053634e-05 91268.9776827 2015-03-21 17:38:04.640000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00580407243475 0.00266450309933 0.00104885943103 0.000238640671498 4189.4005454 2015-03-21 17:38:04.640000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00871387726445 0.00344906230479 0.00110502231401 0.000196925414275 5077.0647266 2015-03-21 17:38:04.640000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.470746031534 0.199116484905 0.00500615369962 0.00248750784738 0.00075847208276 1317.44008861 2015-03-21 17:38:04.640000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0443951200144 0.0112644864639 0.000143913938089 3.67642545978e-05 5.12430723379e-06 195147.330179 2015-03-21 17:38:04.640000
|
||||
97 Louisville 3 Albany 1 1 0.921558187226 0.475609250467 0.272340949816 0.0114375083207 0.00555224049838 0.00163897146727 609.13874858 2015-03-21 17:38:04.640000
|
||||
252 Brigham Young 14 Albany 1 1 0.078441812774 0.00924959798495 0.00131345131286 8.62740398987e-06 1.17243964083e-06 8.27145575834e-08 12089769.2801 2015-03-21 17:38:04.640000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.110581112793 0.0025702091112 0.000840755708385 0.000154273250909 6481.00510527 2015-03-21 17:38:04.640000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.40538351471 0.0151736621087 0.00691947477264 0.00189867144527 525.68406769 2015-03-21 17:38:04.640000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.590086480673 0.336882061253 0.0383963523761 0.0154734506498 63.6268258212 2015-03-21 17:38:04.640000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.110689377971 0.0417536720278 0.00253660427974 0.0006546746282 1526.4763324 2015-03-21 17:38:04.640000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0556518873396 0.0157543830903 0.000705562319716 0.000143326393663 6976.08199059 2015-03-21 17:38:04.640000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.243572254016 0.0878180662945 0.00539353877742 0.00138626668914 720.361919633 2015-03-21 17:38:04.640000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 0.138814803531 0.0425997364405 0.0149682252022 0.000273277059359 2.60662983763e-05 38362.7133881 2015-03-21 17:38:04.640000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861185196469 0.397818694016 0.198804078928 0.00924276552376 0.00190360427815 524.319264869 2015-03-21 17:38:04.640000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0130551713143 0.00257655379626 6.27971171425e-05 7.75514424303e-06 128945.666711 2015-03-21 17:38:04.640000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.54652639823 0.301442959408 0.031833279021 0.0121602140039 81.2353948442 2015-03-21 17:38:04.640000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.659890050524 0.386443596526 0.0918556527043 9.88664628207 2015-03-21 17:38:04.640000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00720176591103 0.00132436030661 7.58006004289e-05 13191.5076364 2015-03-21 17:38:04.640000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.0236043405181 0.00547762178523 0.000405044011757 2467.86750815 2015-03-21 17:38:04.640000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.0628617854621 0.0153578500948 0.00118322348653 844.148876256 2015-03-21 17:38:04.640000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
245 Texas A&M 6 Greensboro 1 1 0.795660970443 0.250482556156 0.0800904287574 0.0131853098859 0.00295725677557 0.000209961711101 4761.77314924 2015-03-21 17:38:04.640000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 0.204339029557 0.0269123483274 0.00397431879648 0.000287124548593 2.98991880935e-05 9.49993984273e-07 1052637.24462 2015-03-21 17:38:04.640000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.710579061813 0.224708650733 0.0363410664999 0.00777848214282 0.000520791686247 1919.1535401 2015-03-21 17:38:04.640000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0120260337029 0.00161440196467 0.000105991082664 8.52630779165e-06 2.08967074e-07 4785441.8971 2015-03-21 17:38:04.640000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.148926193106 0.0683973775076 0.00935673502902 0.00213163789244 0.000154642158862 6465.54190136 2015-03-21 17:38:04.640000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
52 Florida State 2 Greensboro 1 1 1 0.851073806894 0.62121482224 0.187165830538 0.0745869082635 0.0104053838456 95.1040952297 2015-03-21 17:38:04.640000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.793302855772 0.564075866703 0.339944229896 0.0841262372221 10.8868979883 2015-03-21 17:38:04.640000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.042035390947 0.0135861950878 0.00330443799669 0.000250097336885 3997.44321597 2015-03-21 17:38:04.640000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 0.747274032659 0.160137718935 0.0274692917853 0.00954210288645 0.00183698903769 0.000107098784947 9336.1740911 2015-03-21 17:38:04.640000
|
||||
2514 Quinnipiac 12 Oklahoma City 1 1 0.252725967341 0.0254987422027 0.00134407630169 0.000190637252975 2.26540977939e-05 7.98143001746e-07 1252907.31068 2015-03-21 17:38:04.640000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.789420704075 0.134948333749 0.0464930438767 0.0114547272389 0.000874296612274 1142.77659248 2015-03-21 17:38:04.640000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0249428347875 0.000900051444882 9.41362651423e-05 6.71894256362e-06 1.40283813193e-07 7128405.17343 2015-03-21 17:38:04.640000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.00216774102773 0.000388660732131 2.11528093292e-05 47274.0443895 2015-03-21 17:38:04.640000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0339707328402 0.00693810522449 0.000425912904285 2346.89786818 2015-03-21 17:38:04.640000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.00378193683536 0.000517855312956 2.09591954448e-05 47710.7550925 2015-03-21 17:38:04.640000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.326097607224 0.139489482237 0.020963704518 46.7014927939 2015-03-21 17:38:04.640000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 17:38:04.640000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-10.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-10.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.991236348406 0.98006183715 0.953986377396 0.889993829005 0.749558187351 0.334119241007 2015-03-21 18:11:15.500000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 9.75476857984e-06 9.03978810283e-07 5.62710794795e-08 2.29096734264e-09 4.78114121035e-11 20915508577.5 2015-03-21 18:11:15.500000
|
||||
164 Rutgers 8 Albany 1 1 0.661583159313 0.00699314026081 0.00452201823883 0.00222293292446 0.0007593741936 0.000146990464358 6802.16239812 2015-03-21 18:11:15.500000
|
||||
2550 Seton Hall 9 Albany 1 1 0.338416840687 0.00176075656438 0.000897290933247 0.000327839275143 7.93174354827e-05 1.04246274784e-05 95925.6891863 2015-03-21 18:11:15.500000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00580407243475 0.00253434597879 0.000998603571232 0.000227969095713 4385.55948901 2015-03-21 18:11:15.500000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00871387726445 0.00326611454013 0.00104759112386 0.000187382945012 5335.66497737 2015-03-21 18:11:15.500000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
58 South Florida 6 Albany 1 1 0.828601096458 0.409816523623 0.174408609139 0.00442809125592 0.00221196297662 0.000680624753655 1468.23836465 2015-03-21 18:11:15.500000
|
||||
99 LSU 11 Albany 1 1 0.171398903542 0.0328716610315 0.00851361554385 0.000111735199494 2.91342897043e-05 4.17194964572e-06 239695.085744 2015-03-21 18:11:15.500000
|
||||
97 Louisville 3 Albany 1 1 1 0.557311815346 0.342171903296 0.0167171140482 0.00882469632093 0.00293124743409 340.15168456 2015-03-21 18:11:15.500000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.100303388427 0.00234005348773 0.000767526433077 0.000141627500669 7059.77559286 2015-03-21 18:11:15.500000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.374602483594 0.0140653396229 0.00642608930243 0.00177108847689 563.624530647 2015-03-21 18:11:15.500000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.590086480673 0.336882061253 0.0386036403394 0.0155729174934 63.2140434139 2015-03-21 18:11:15.500000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.110689377971 0.0417536720278 0.00254471930175 0.000657946098617 1518.88134302 2015-03-21 18:11:15.500000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0556518873396 0.0157543830903 0.000706821720775 0.000143902759395 6948.13707148 2015-03-21 18:11:15.500000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.243572254016 0.0878180662945 0.00541104056476 0.00139322877249 716.757212416 2015-03-21 18:11:15.500000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 0.138814803531 0.0425997364405 0.0149682252022 0.000272367317447 2.60710627169e-05 38355.7026346 2015-03-21 18:11:15.500000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861185196469 0.397818694016 0.198804078928 0.00926097705686 0.00191149589189 522.150483473 2015-03-21 18:11:15.500000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0130551713143 0.00257655379626 6.26978452284e-05 7.76698584076e-06 128749.073774 2015-03-21 18:11:15.500000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.54652639823 0.301442959408 0.0319996089106 0.0122372688828 80.7175800892 2015-03-21 18:11:15.500000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.660178326349 0.387942705664 0.0926638346601 9.79169671392 2015-03-21 18:11:15.500000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00726267112006 0.001344888332 7.73334692541e-05 12930.0117553 2015-03-21 18:11:15.500000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.02372987105 0.00554439540718 0.000412075130693 2425.74193494 2015-03-21 18:11:15.500000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.063107537792 0.0155250734556 0.00120262036676 830.5175991 2015-03-21 18:11:15.500000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.133852586968 0.0201117442297 0.00148099156534 0.00015844230824 5.1626759849e-06 193696.997497 2015-03-21 18:11:15.500000
|
||||
9 Arizona State 3 Greensboro 1 1 0.944074819191 0.843890290048 0.261362576456 0.0412247636617 0.00868176618843 0.000568433189461 1758.22169666 2015-03-21 18:11:15.500000
|
||||
195 Ohio 14 Greensboro 1 1 0.0559251808091 0.0222571229845 0.00286631086484 0.000179814183938 1.39552422448e-05 3.27473144077e-07 3053684.52533 2015-03-21 18:11:15.500000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.148926193106 0.073835243034 0.0100241780045 0.00228489461889 0.000165353097424 6046.66415373 2015-03-21 18:11:15.500000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
52 Florida State 2 Greensboro 1 1 1 0.851073806894 0.641824125416 0.192811846274 0.0770417751935 0.0107688461578 91.8604592683 2015-03-21 18:11:15.500000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.784847104664 0.558102963219 0.336085811473 0.0836044548379 10.9610851113 2015-03-21 18:11:15.500000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.0402621752692 0.0130390072168 0.00317249746708 0.000242463700349 4123.32870802 2015-03-21 18:11:15.500000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 1 0.240415691594 0.0468803133514 0.0179389061215 0.0039069477655 0.000266000380972 3758.39311194 2015-03-21 18:11:15.500000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
24 Stanford 4 Oklahoma City 1 1 0.931547237334 0.740985930232 0.127323800166 0.0440392793004 0.0108796462647 0.000840963644714 1188.11204579 2015-03-21 18:11:15.500000
|
||||
2463 Cal State Northridge 13 Oklahoma City 1 1 0.0684527626664 0.0185983781747 0.000686606549444 7.32378294311e-05 5.33455204706e-06 1.14659630494e-07 8721464.39889 2015-03-21 18:11:15.500000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.00215707050078 0.00038614386283 2.11667682344e-05 47242.8677897 2015-03-21 18:11:15.500000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0339308661665 0.00691586005597 0.000427409849036 2338.67467586 2015-03-21 18:11:15.500000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.00376951641075 0.000515368010052 2.10011395859e-05 47615.4636642 2015-03-21 18:11:15.500000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.326949153234 0.139594494138 0.0211021262054 46.3885896742 2015-03-21 18:11:15.500000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 18:11:15.500000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-11.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-11.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 0.99986104853 0.989052070201 0.977902182983 0.952151780592 0.888282295305 0.748023071535 0.336857161301 2015-03-21 21:03:39.140000
|
||||
2597 St. Francis (NY) 16 Albany 1 1 0.000138951470311 7.46818037716e-06 7.03859682705e-07 4.51153051852e-08 1.87196968857e-09 3.98552110394e-11 25090821849.4 2015-03-21 21:03:39.140000
|
||||
164 Rutgers 8 Albany 1 1 1 0.0109404616185 0.00714739296402 0.00358771502324 0.00124818713072 0.000247048721535 4046.78455758 2015-03-21 21:03:39.140000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00597271711166 0.00262135485353 0.0010306584214 0.000234520324532 4263.02275366 2015-03-21 21:03:39.140000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00897700308198 0.00338454247968 0.00108325279021 0.000193157096322 5176.1331162 2015-03-21 21:03:39.140000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
58 South Florida 6 Albany 1 1 1 0.484097610111 0.201246297572 0.00506531605713 0.00247505658547 0.000738447631561 1353.19216917 2015-03-21 21:03:39.140000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
97 Louisville 3 Albany 1 1 1 0.515902389889 0.318893430776 0.0161740051951 0.00859498532964 0.00288035497464 346.179430593 2015-03-21 21:03:39.140000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.101472604033 0.0024402134452 0.000799303663584 0.000147175396268 6793.61394608 2015-03-21 21:03:39.140000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.378387667619 0.014575027239 0.00664919753557 0.00182808129972 546.021623247 2015-03-21 21:03:39.140000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.590086480673 0.336882061253 0.0389754904654 0.0157010569008 62.6899800006 2015-03-21 21:03:39.140000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.110689377971 0.0417536720278 0.00258071438483 0.000665924479586 1500.67178209 2015-03-21 21:03:39.140000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0556518873396 0.0157543830903 0.000718215496938 0.000145901780259 6852.92596461 2015-03-21 21:03:39.140000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.243572254016 0.0878180662945 0.0054871765142 0.00141003879856 708.200343295 2015-03-21 21:03:39.140000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 0.138814803531 0.0425997364405 0.0149682252022 0.000278123679456 2.65542822355e-05 37657.7094741 2015-03-21 21:03:39.140000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861185196469 0.397818694016 0.198804078928 0.00940811350589 0.00193764653298 515.090000409 2015-03-21 21:03:39.140000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0130551713143 0.00257655379626 6.39299358652e-05 7.90010210112e-06 126579.642528 2015-03-21 21:03:39.140000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.54652639823 0.301442959408 0.0323252973841 0.0123436216731 80.0135004529 2015-03-21 21:03:39.140000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.660194384281 0.387656411541 0.0929880243811 9.75407297505 2015-03-21 21:03:39.140000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00724829998919 0.0013415756414 7.79496308954e-05 12827.7971157 2015-03-21 21:03:39.140000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.0237042868741 0.0055348058086 0.000415231442513 2407.29546517 2015-03-21 21:03:39.140000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.0630628394082 0.0155019214597 0.00121175289386 824.250762812 2015-03-21 21:03:39.140000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.105717647652 0.0164066045649 0.00125215026394 0.000138492356177 4.73923648835e-06 211003.452396 2015-03-21 21:03:39.140000
|
||||
9 Arizona State 3 Greensboro 1 1 1 0.894282352348 0.277717134813 0.0439460967401 0.00927410598617 0.00061516257042 1624.58654912 2015-03-21 21:03:39.140000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.148926193106 0.0716924794565 0.00977180615136 0.00223302017765 0.000163753313566 6105.74665583 2015-03-21 21:03:39.140000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
52 Florida State 2 Greensboro 1 1 1 0.851073806894 0.634183781165 0.190820136292 0.076280067564 0.0107530641099 91.9967486273 2015-03-21 21:03:39.140000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.786750266982 0.559531234094 0.337103928575 0.0842206351251 10.873574671 2015-03-21 21:03:39.140000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.0404783385837 0.0131342297859 0.0032056570539 0.000247760201943 4035.16073993 2015-03-21 21:03:39.140000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 1 0.212223254545 0.0422707714978 0.0164335847487 0.00365748086241 0.000257527929055 3882.0739783 2015-03-21 21:03:39.140000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 0.787776745455 0.130500622937 0.043892570926 0.0105028717837 0.000786737493839 1270.07200029 2015-03-21 21:03:39.140000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.0021661813444 0.000388306984349 2.15007136075e-05 46509.0841885 2015-03-21 21:03:39.140000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0340292665106 0.00694425968137 0.000433267865389 2307.04100623 2015-03-21 21:03:39.140000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.0037835041395 0.000517983464507 2.13394028165e-05 46860.6675264 2015-03-21 21:03:39.140000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.327029428451 0.13971911106 0.0212510521205 46.0564936893 2015-03-21 21:03:39.140000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 21:03:39.140000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-12.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-12.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 0.98982283941 0.979315655605 0.954934250571 0.894003351127 0.758743481863 0.317968488565 2015-03-21 23:04:25.210000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
164 Rutgers 8 Albany 1 1 1 0.0101771605899 0.00665806046695 0.00334880008615 0.00116801618623 0.000231911215152 4310.99499923 2015-03-21 23:04:25.210000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00560890497549 0.00246272858753 0.000968719813107 0.000220552378222 4533.07035581 2015-03-21 23:04:25.210000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00841737895227 0.00317512943047 0.00101676211597 0.000181418511617 5511.11665826 2015-03-21 23:04:25.210000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
58 South Florida 6 Albany 1 1 1 0.484097610111 0.201246297572 0.00476429783896 0.00232856393724 0.000694983450504 1437.88318387 2015-03-21 23:04:25.210000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
97 Louisville 3 Albany 1 1 1 0.515902389889 0.318893430776 0.0152784601966 0.00812138456003 0.00272272622893 366.278938798 2015-03-21 23:04:25.210000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.101472604033 0.00229469753842 0.000751886832062 0.000138500937727 7219.16772168 2015-03-21 23:04:25.210000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.378387667619 0.0137416357507 0.00627095073069 0.00172480650645 578.77517841 2015-03-21 23:04:25.210000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.590086480673 0.336882061253 0.0370908955831 0.0149463492091 65.905970549 2015-03-21 23:04:25.210000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.110689377971 0.0417536720278 0.00244405243663 0.000630863925328 1584.12788551 2015-03-21 23:04:25.210000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
344 Mississippi State 5 Spokane 1 1 1 0.232815092395 0.0556518873396 0.0157543830903 0.000679010537809 0.000137979315733 7246.4631048 2015-03-21 23:04:25.210000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
150 Duke 4 Spokane 1 1 1 0.767184907605 0.243572254016 0.0878180662945 0.00519695752023 0.00133589026384 747.564479485 2015-03-21 23:04:25.210000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 0.138814803531 0.0425997364405 0.0149682252022 0.000262040854011 2.50235352267e-05 39961.3790539 2015-03-21 23:04:25.210000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861185196469 0.397818694016 0.198804078928 0.00889626995206 0.00183278997789 544.616252852 2015-03-21 23:04:25.210000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0130551713143 0.00257655379626 6.02867391973e-05 7.45161666482e-06 134198.066455 2015-03-21 23:04:25.210000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.54652639823 0.301442959408 0.030740851075 0.0117421995165 84.1629201665 2015-03-21 23:04:25.210000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.660194384281 0.387656411541 0.0892265985454 10.2074203915 2015-03-21 23:04:25.210000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00724829998919 0.0013415756414 7.40129367974e-05 13510.1514726 2015-03-21 23:04:25.210000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.0237042868741 0.0055348058086 0.000394688333448 2532.64468938 2015-03-21 23:04:25.210000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.0630628394082 0.0155019214597 0.00115202983649 867.033073735 2015-03-21 23:04:25.210000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.105717647652 0.0164066045649 0.00125215026394 0.000138492356177 4.49251845849e-06 222591.296334 2015-03-21 23:04:25.210000
|
||||
9 Arizona State 3 Greensboro 1 1 1 0.894282352348 0.277717134813 0.0439460967401 0.00927410598617 0.000584406017071 1710.13912381 2015-03-21 23:04:25.210000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.148926193106 0.0716924794565 0.00977180615136 0.00223302017765 0.000155635251223 6424.27956966 2015-03-21 23:04:25.210000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
52 Florida State 2 Greensboro 1 1 1 0.851073806894 0.634183781165 0.190820136292 0.076280067564 0.0102614999299 96.4516402898 2015-03-21 23:04:25.210000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.786750266982 0.559531234094 0.337103928575 0.0808569762861 11.367516644 2015-03-21 23:04:25.210000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.0404783385837 0.0131342297859 0.0032056570539 0.000235536018567 4244.63515205 2015-03-21 23:04:25.210000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 1 0.212223254545 0.0422707714978 0.0164335847487 0.00365748086241 0.000244715778524 4085.37320418 2015-03-21 23:04:25.210000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 0.787776745455 0.130500622937 0.043892570926 0.0105028717837 0.000747809136396 1336.2396128 2015-03-21 23:04:25.210000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
2390 Miami (FL) 11 Oklahoma City 1 1 1 0.175605561927 0.0206698925721 0.0021661813444 0.000388306984349 2.04111935943e-05 48991.7252603 2015-03-21 23:04:25.210000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 0.824394438073 0.181637951714 0.0340292665106 0.00694425968137 0.000411501320969 2429.12585633 2015-03-21 23:04:25.210000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0282343152835 0.0037835041395 0.000517983464507 2.02385754238e-05 49409.5923495 2015-03-21 23:04:25.210000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.76945784043 0.327029428451 0.13971911106 0.0202925198696 48.279242126 2015-03-21 23:04:25.210000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-21 23:04:25.210000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-13.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-13.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 0.98982283941 0.979315655605 0.954934250571 0.893893808041 0.758671052047 0.318094314132 2015-03-22 15:41:43.560000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
164 Rutgers 8 Albany 1 1 1 0.0101771605899 0.00665806046695 0.00334880008615 0.0011663499464 0.000231969047583 4309.91997151 2015-03-22 15:41:43.560000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00560890497549 0.00246272858753 0.000967550031738 0.000220614814637 4531.78716412 2015-03-22 15:41:43.560000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00841737895227 0.00317512943047 0.00101520260172 0.000181463647436 5509.74561836 2015-03-22 15:41:43.560000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
58 South Florida 6 Albany 1 1 1 0.484097610111 0.201246297572 0.00476429783896 0.0023264675343 0.000695123892527 1437.59247359 2015-03-22 15:41:43.560000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
97 Louisville 3 Albany 1 1 1 0.515902389889 0.318893430776 0.0152784601966 0.00811471746013 0.00272307110518 366.232423016 2015-03-22 15:41:43.560000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.101472604033 0.00229469753842 0.000750754250048 0.000138535474704 7217.36772952 2015-03-22 15:41:43.560000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.378387667619 0.0137416357507 0.0062648259415 0.00172526345394 578.621621102 2015-03-22 15:41:43.560000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.583415496337 0.334013017576 0.0369698229116 0.0149600732216 65.8445926158 2015-03-22 15:41:43.560000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.108290422875 0.0410973514111 0.00242676455189 0.000631405546194 1582.76815983 2015-03-22 15:41:43.560000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.308294080787 0.108093824956 0.00615237087404 0.00153289564133 651.360130096 2015-03-22 15:41:43.560000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 0.138814803531 0.0425997364405 0.0149099166814 0.000261865818642 2.51210212628e-05 39806.2988171 2015-03-22 15:41:43.560000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861185196469 0.397818694016 0.198398105099 0.00889592087541 0.00183770977104 543.155565672 2015-03-22 15:41:43.560000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0130551713143 0.00255931720119 6.01175411344e-05 7.46731203344e-06 133915.996574 2015-03-22 15:41:43.560000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.54652639823 0.300928467075 0.0307334616208 0.0117571405459 84.0546947274 2015-03-22 15:41:43.560000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.660194384281 0.388100340425 0.0893164813134 10.1961419135 2015-03-22 15:41:43.560000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00724829998919 0.00134775134803 7.43056377695e-05 13456.929035 2015-03-22 15:41:43.560000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.0237042868741 0.00555781873571 0.000396095886066 2523.64121739 2015-03-22 15:41:43.560000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.0630628394082 0.0155645401768 0.00115603385011 864.026573315 2015-03-22 15:41:43.560000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.105717647652 0.0164066045649 0.00125215026394 0.000139259521424 4.5141830353e-06 221523.025982 2015-03-22 15:41:43.560000
|
||||
9 Arizona State 3 Greensboro 1 1 1 0.894282352348 0.277717134813 0.0439460967401 0.00931446382912 0.000586588075535 1703.77382972 2015-03-22 15:41:43.560000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.148926193106 0.0716924794565 0.00977180615136 0.00224240723727 0.00015619628753 6401.20081931 2015-03-22 15:41:43.560000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
52 Florida State 2 Greensboro 1 1 1 0.851073806894 0.634183781165 0.190820136292 0.0764641889726 0.0102824074265 96.2534892389 2015-03-22 15:41:43.560000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.786750266982 0.560585329538 0.337648951746 0.0809588883273 11.3519482624 2015-03-22 15:41:43.560000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.0404783385837 0.0131149412624 0.00320390990512 0.000235686779637 4241.91935908 2015-03-22 15:41:43.560000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 1 0.212223254545 0.0422707714978 0.0164461979439 0.00366266373235 0.000245264295721 4076.23430375 2015-03-22 15:41:43.560000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 0.787776745455 0.130500622937 0.0438510717008 0.0105011965573 0.000748445297455 1335.10299029 2015-03-22 15:41:43.560000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 1 0.228070955776 0.044262635996 0.0093569615979 0.0005782791217 1728.26872591 2015-03-22 15:41:43.560000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
8 Arkansas 10 Oklahoma City 1 1 1 0.0652198580686 0.0252429512743 0.00342389150116 0.000474577891569 1.88038181277e-05 53179.6887946 2015-03-22 15:41:43.560000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 0.934780141931 0.74668609295 0.318315932058 0.136420968324 0.0199031031576 49.2434214444 2015-03-22 15:41:43.560000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 15:41:43.560000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-14.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-14.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 0.98982283941 0.979315655605 0.954934250571 0.893893808041 0.758174774451 0.318957097622 2015-03-22 17:20:40.650000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
164 Rutgers 8 Albany 1 1 1 0.0101771605899 0.00665806046695 0.00334880008615 0.0011663499464 0.000228680055145 4371.92180713 2015-03-22 17:20:40.650000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00560890497549 0.00246272858753 0.000967550031738 0.000217757709832 4591.25990561 2015-03-22 17:20:40.650000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00841737895227 0.00317512943047 0.00101520260172 0.000178723670077 5594.22977326 2015-03-22 17:20:40.650000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
58 South Florida 6 Albany 1 1 1 0.484097610111 0.201246297572 0.00476429783896 0.0023264675343 0.000687924198015 1452.64853117 2015-03-22 17:20:40.650000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
97 Louisville 3 Albany 1 1 1 0.515902389889 0.318893430776 0.0152784601966 0.00811471746013 0.00269803024239 369.640767582 2015-03-22 17:20:40.650000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
2168 Dayton 7 Albany 1 1 1 0.264733474838 0.101472604033 0.00229469753842 0.000750754250048 0.000136481306694 7326.01074035 2015-03-22 17:20:40.650000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
96 Kentucky 2 Albany 1 1 1 0.735266525162 0.378387667619 0.0137416357507 0.0062648259415 0.00170601152197 585.162512456 2015-03-22 17:20:40.650000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.583415496337 0.334013017576 0.0369698229116 0.0148512946164 66.3341971745 2015-03-22 17:20:40.650000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.108290422875 0.0410973514111 0.00242676455189 0.000624013010452 1601.53068967 2015-03-22 17:20:40.650000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.308294080787 0.108093824956 0.00615237087404 0.00151431486794 659.364644876 2015-03-22 17:20:40.650000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 0.138814803531 0.0425997364405 0.0149099166814 0.000261865818642 2.46182637367e-05 40619.2488809 2015-03-22 17:20:40.650000
|
||||
204 Oregon State 3 Spokane 1 1 1 0.861185196469 0.397818694016 0.198398105099 0.00889592087541 0.00181227002316 550.794151656 2015-03-22 17:20:40.650000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0130551713143 0.00255931720119 6.01175411344e-05 7.33243098166e-06 136379.417695 2015-03-22 17:20:40.650000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.54652639823 0.300928467075 0.0307334616208 0.0116646799102 84.7288847785 2015-03-22 17:20:40.650000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.660194384281 0.382140481955 0.0879662974259 10.3679901197 2015-03-22 17:20:40.650000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00724829998919 0.00127650837031 7.05794521103e-05 14167.4296222 2015-03-22 17:20:40.650000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.0237042868741 0.0052981585537 0.000378507587047 2640.95496794 2015-03-22 17:20:40.650000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.0630628394082 0.0148599823122 0.00110615605304 903.031576066 2015-03-22 17:20:40.650000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.105717647652 0.0164066045649 0.00125215026394 0.000130252769149 4.23754412438e-06 235984.74331 2015-03-22 17:20:40.650000
|
||||
9 Arizona State 3 Greensboro 1 1 1 0.894282352348 0.277717134813 0.0439460967401 0.00885362471654 0.00055900320003 1787.89852499 2015-03-22 17:20:40.650000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.148926193106 0.0716924794565 0.00977180615136 0.00213630281576 0.000149174284888 6702.56825073 2015-03-22 17:20:40.650000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
52 Florida State 2 Greensboro 1 1 1 0.851073806894 0.634183781165 0.190820136292 0.0741742552665 0.00998627935552 99.1373949596 2015-03-22 17:20:40.650000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.786750266982 0.529953520527 0.319666522118 0.0768402060277 12.0140202857 2015-03-22 17:20:40.650000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.0404783385837 0.0114230654704 0.00280625464929 0.000207850829203 4810.14270187 2015-03-22 17:20:40.650000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 1 0.212223254545 0.0422707714978 0.0145354234303 0.00325515807375 0.000219434329594 4556.172079 2015-03-22 17:20:40.650000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 0.787776745455 0.130500622937 0.038299644315 0.00922192384981 0.000661652148919 1510.3681738 2015-03-22 17:20:40.650000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 1 0.182746184966 0.0359739391424 0.00771358890367 0.000484874613449 2061.38885737 2015-03-22 17:20:40.650000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 0.817253815034 0.369814407115 0.168466985646 0.0268388408705 36.2594332529 2015-03-22 17:20:40.650000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 17:20:40.650000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-15.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-15.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 0.98982283941 0.979315655605 0.958454525807 0.896464079698 0.760408715961 0.315082243286 2015-03-22 21:10:54.940000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
164 Rutgers 8 Albany 1 1 1 0.0101771605899 0.00665806046695 0.00363819024948 0.00128608013786 0.000248370593121 4025.24154266 2015-03-22 21:10:54.940000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
251 Texas 5 Albany 1 1 1 0.334364036964 0.00560890497549 0.0027128432327 0.00107483832751 0.000238789238027 4186.79342094 2015-03-22 21:10:54.940000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
25 California 4 Albany 1 1 1 0.665635963036 0.00841737895227 0.00354122670222 0.00115461784235 0.000199889076051 5001.77463759 2015-03-22 21:10:54.940000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
58 South Florida 6 Albany 1 1 1 0.484097610111 0.253829430709 0.0059098766826 0.00287419140161 0.000836153688829 1194.95238694 2015-03-22 21:10:54.940000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
97 Louisville 3 Albany 1 1 1 0.515902389889 0.369160297589 0.0174303080818 0.00921326144941 0.00302056717216 330.06365229 2015-03-22 21:10:54.940000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2168 Dayton 7 Albany 1 1 1 1 0.377010271702 0.00831302924442 0.00273767452833 0.000481947194361 2073.91611467 2015-03-22 21:10:54.940000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.583415496337 0.355695524591 0.0385382572777 0.0153737231659 64.0460522287 2015-03-22 21:10:54.940000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.108290422875 0.0456476835373 0.00262607952538 0.000665469890094 1501.69758991 2015-03-22 21:10:54.940000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.308294080787 0.120840843849 0.00670520659188 0.0016266920143 613.744519067 2015-03-22 21:10:54.940000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.319064584572 0.115961348441 0.00217106976177 0.000215397759041 4641.57383388 2015-03-22 21:10:54.940000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0194130944065 0.00365820374928 8.18828355738e-05 9.52621715524e-06 104972.462572 2015-03-22 21:10:54.940000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.661522321021 0.358196395832 0.0350727606226 0.0130128956271 75.8468470551 2015-03-22 21:10:54.940000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.660194384281 0.382140481955 0.0872519140154 10.4610666286 2015-03-22 21:10:54.940000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00724829998919 0.00127650837031 6.92715705888e-05 14434.9365827 2015-03-22 21:10:54.940000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.0237042868741 0.0052981585537 0.000371841653166 2688.3167871 2015-03-22 21:10:54.940000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.0630628394082 0.0148599823122 0.00108689169453 919.054873023 2015-03-22 21:10:54.940000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.105717647652 0.0164066045649 0.00125215026394 0.000130252769149 4.15471647595e-06 240689.310828 2015-03-22 21:10:54.940000
|
||||
9 Arizona State 3 Greensboro 1 1 1 0.894282352348 0.277717134813 0.0439460967401 0.00885362471654 0.000548889993775 1820.85868087 2015-03-22 21:10:54.940000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.148926193106 0.0716924794565 0.00977180615136 0.00213630281576 0.000146532281752 6823.43478015 2015-03-22 21:10:54.940000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
52 Florida State 2 Greensboro 1 1 1 0.851073806894 0.634183781165 0.190820136292 0.0741742552665 0.00985788624084 100.441625067 2015-03-22 21:10:54.940000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 0.91711133992 0.786750266982 0.529953520527 0.319666522118 0.0762431257596 12.1159365521 2015-03-22 21:10:54.940000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
305 DePaul 9 Oklahoma City 1 1 1 0.0828886600804 0.0404783385837 0.0114230654704 0.00280625464929 0.000204225813202 4895.54066897 2015-03-22 21:10:54.940000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 1 0.212223254545 0.0422707714978 0.0145354234303 0.00325515807375 0.000215517036801 4639.00440449 2015-03-22 21:10:54.940000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 0.787776745455 0.130500622937 0.038299644315 0.00922192384981 0.000650012570784 1537.4317857 2015-03-22 21:10:54.940000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 1 0.182746184966 0.0359739391424 0.00771358890367 0.0004760949282 2099.4214512 2015-03-22 21:10:54.940000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 0.817253815034 0.369814407115 0.168466985646 0.0265355041279 36.6853590262 2015-03-22 21:10:54.940000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-22 21:10:54.940000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-16.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-16.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 0.98982283941 0.977743191526 0.956915557952 0.895024648442 0.759618220128 0.31645078212 2015-03-23 01:56:33.060000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
164 Rutgers 8 Albany 1 1 1 0.0101771605899 0.00636659392187 0.00349255803178 0.00124108700011 0.000239797342607 4169.18799761 2015-03-23 01:56:33.060000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
251 Texas 5 Albany 1 1 1 1 0.0158902145525 0.00748127368295 0.00287798668841 0.000610415505066 1637.22837346 2015-03-23 01:56:33.060000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
58 South Florida 6 Albany 1 1 1 0.484097610111 0.253829430709 0.00599631088073 0.00291655205397 0.00084511652293 1182.2687835 2015-03-23 01:56:33.060000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
97 Louisville 3 Albany 1 1 1 0.515902389889 0.369160297589 0.0176806075732 0.0093408213179 0.00304984760469 326.885235467 2015-03-23 01:56:33.060000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2168 Dayton 7 Albany 1 1 1 1 0.377010271702 0.00843369187949 0.0027781156011 0.00048575037561 2057.67056458 2015-03-23 01:56:33.060000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.583415496337 0.355695524591 0.0388061070566 0.0154401234027 63.7663217396 2015-03-23 01:56:33.060000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.108290422875 0.0456476835373 0.00264881801406 0.000667570460112 1496.96921786 2015-03-23 01:56:33.060000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.308294080787 0.120840843849 0.00676356075185 0.00163142170023 611.962301445 2015-03-23 01:56:33.060000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.319064584572 0.115961348441 0.00219034192241 0.000215136074127 4647.22091812 2015-03-23 01:56:33.060000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0194130944065 0.00365820374928 8.26192760818e-05 9.52247041319e-06 105013.765771 2015-03-23 01:56:33.060000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.661522321021 0.358196395832 0.0353293418754 0.0130675007924 75.5257271367 2015-03-23 01:56:33.060000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.660194384281 0.379293944946 0.0870922258656 10.4820810935 2015-03-23 01:56:33.060000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00724829998919 0.0012328750709 6.77430191585e-05 14760.668618 2015-03-23 01:56:33.060000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.0237042868741 0.00514065689089 0.000365000119425 2738.72513098 2015-03-23 01:56:33.060000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.0630628394082 0.0144338555274 0.00106779121562 935.512667803 2015-03-23 01:56:33.060000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.105717647652 0.0164066045649 0.00125215026394 0.000124656508763 4.03209904347e-06 248008.780816 2015-03-23 01:56:33.060000
|
||||
9 Arizona State 3 Greensboro 1 1 1 0.894282352348 0.277717134813 0.0439460967401 0.00857280121793 0.000537895630573 1858.09671535 2015-03-23 01:56:33.060000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
526 Florida Gulf Coast 7 Greensboro 1 1 1 0.148926193106 0.0716924794565 0.00977180615136 0.00207187404876 0.000143784101022 6953.87187314 2015-03-23 01:56:33.060000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
52 Florida State 2 Greensboro 1 1 1 0.851073806894 0.634183781165 0.190820136292 0.0728855390677 0.00977131283758 101.340393417 2015-03-23 01:56:33.060000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 0.852119946544 0.565689544505 0.335306840675 0.0778838316731 11.8396353713 2015-03-23 01:56:33.060000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 1 0.212223254545 0.0367293478242 0.0128388041835 0.00293183389368 0.000200117714741 4996.05886254 2015-03-23 01:56:33.060000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 0.787776745455 0.111150705632 0.0332415518706 0.00816695461539 0.00059410733066 1682.19754427 2015-03-23 01:56:33.060000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 1 0.182746184966 0.0327523291902 0.00709574146388 0.000446581572225 2238.23256622 2015-03-23 01:56:33.060000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 0.817253815034 0.355477770251 0.162742426074 0.0259451544425 37.5428424494 2015-03-23 01:56:33.060000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 01:56:33.060000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-17.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-17.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 0.98982283941 0.977743191526 0.956915557952 0.895024648442 0.759777389675 0.316174992293 2015-03-23 19:55:31.810000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
164 Rutgers 8 Albany 1 1 1 0.0101771605899 0.00636659392187 0.00349255803178 0.00124108700011 0.000239014167033 4182.85241517 2015-03-23 19:55:31.810000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
251 Texas 5 Albany 1 1 1 1 0.0158902145525 0.00748127368295 0.00287798668841 0.000608622495037 1642.05461621 2015-03-23 19:55:31.810000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
58 South Florida 6 Albany 1 1 1 0.484097610111 0.253829430709 0.00599631088073 0.00291655205397 0.000843614034557 1184.37620172 2015-03-23 19:55:31.810000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
97 Louisville 3 Albany 1 1 1 0.515902389889 0.369160297589 0.0176806075732 0.0093408213179 0.00304578647115 327.322424921 2015-03-23 19:55:31.810000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2168 Dayton 7 Albany 1 1 1 1 0.377010271702 0.00843369187949 0.0027781156011 0.000483995848473 2065.13342481 2015-03-23 19:55:31.810000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
120 Maryland 1 Spokane 1 1 1 0.798756126649 0.583415496337 0.355695524591 0.0388061070566 0.0154309742598 63.8047221882 2015-03-23 19:55:31.810000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
163 Princeton 8 Spokane 1 1 1 0.201243873351 0.108290422875 0.0456476835373 0.00264881801406 0.000666032201773 1500.4289059 2015-03-23 19:55:31.810000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.308294080787 0.120840843849 0.00676356075185 0.00162739473982 613.479066163 2015-03-23 19:55:31.810000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.319064584572 0.115961348441 0.00219034192241 0.00021393155601 4673.3922152 2015-03-23 19:55:31.810000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
221 Pittsburgh 10 Spokane 1 1 1 0.0682531476975 0.0194130944065 0.00365820374928 8.26192760818e-05 9.47435621364e-06 105547.068645 2015-03-23 19:55:31.810000
|
||||
2633 Tennessee 2 Spokane 1 1 1 0.931746852303 0.661522321021 0.358196395832 0.0353293418754 0.0130559868416 75.5932144487 2015-03-23 19:55:31.810000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.807056319927 0.641669588757 0.369206642416 0.0849791753767 10.7675888895 2015-03-23 19:55:31.810000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190582096836 0.00651632430083 0.001116987991 6.19043551124e-05 16152.9523057 2015-03-23 19:55:31.810000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
194 Ohio State 5 Greensboro 1 1 1 0.339211121195 0.0514120771448 0.0216347688369 0.00472369438507 0.000338001025935 2957.57090147 2015-03-23 19:55:31.810000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
153 North Carolina 4 Greensboro 1 1 1 0.660788878805 0.122473393244 0.0581369268984 0.0133853569645 0.000997030031742 1001.97881524 2015-03-23 19:55:31.810000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.105717647652 0.0128676901846 0.00100315088558 0.000101993016121 3.37335850895e-06 296439.475374 2015-03-23 19:55:31.810000
|
||||
9 Arizona State 3 Greensboro 1 1 1 0.894282352348 0.233253680986 0.0374552829858 0.0074132470726 0.000472810447233 2114.01248725 2015-03-23 19:55:31.810000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 0.75387862883 0.233583957336 0.0917177014422 0.0127459298605 77.4564179265 2015-03-23 19:55:31.810000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 0.852119946544 0.565689544505 0.333473864054 0.0774793497675 11.9066648468 2015-03-23 19:55:31.810000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
201 Oklahoma 5 Oklahoma City 1 1 1 0.212223254545 0.0367293478242 0.0128388041835 0.00286038150337 0.000195704097201 5108.75505522 2015-03-23 19:55:31.810000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 0.787776745455 0.111150705632 0.0332415518706 0.00797866055434 0.000581662899265 1718.20884289 2015-03-23 19:55:31.810000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 1 0.182746184966 0.0327523291902 0.00691628118579 0.000436322879233 2290.88073235 2015-03-23 19:55:31.810000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 0.817253815034 0.355477770251 0.161105189415 0.0257065192544 37.9006380095 2015-03-23 19:55:31.810000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 19:55:31.810000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-18.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-18.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 0.98982283941 0.977743191526 0.956915557952 0.892096771012 0.756578184581 0.321740463022 2015-03-23 21:06:46.470000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
164 Rutgers 8 Albany 1 1 1 0.0101771605899 0.00636659392187 0.00349255803178 0.00118889015508 0.00022905587413 4364.74702045 2015-03-23 21:06:46.470000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
251 Texas 5 Albany 1 1 1 1 0.0158902145525 0.00748127368295 0.00276432695082 0.000584672267173 1709.35989929 2015-03-23 21:06:46.470000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
58 South Florida 6 Albany 1 1 1 0.484097610111 0.253829430709 0.00599631088073 0.00282601264836 0.000817094118949 1222.84921983 2015-03-23 21:06:46.470000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
97 Louisville 3 Albany 1 1 1 0.515902389889 0.369160297589 0.0176806075732 0.00908261319311 0.00296028333001 336.80550323 2015-03-23 21:06:46.470000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2168 Dayton 7 Albany 1 1 1 1 0.377010271702 0.00843369187949 0.00265466658214 0.000462721406275 2160.12759522 2015-03-23 21:06:46.470000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
120 Maryland 1 Spokane 1 1 1 1 0.734506138555 0.457691823395 0.0509255542978 0.0204566870853 47.8837706628 2015-03-23 21:06:46.470000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.265493861445 0.106575518096 0.00610308615088 0.00148902651139 670.579714902 2015-03-23 21:06:46.470000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.31108134088 0.104107913112 0.00202709412856 0.000202396719497 4939.7915429 2015-03-23 21:06:46.470000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 0.68891865912 0.331624745397 0.0303309848815 0.0105265446076 93.9979349614 2015-03-23 21:06:46.470000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 0.950479729868 0.808221769802 0.643265289754 0.369367141831 0.085667927315 10.6729799744 2015-03-23 21:06:46.470000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
183 Syracuse 8 Greensboro 1 1 1 0.0495202701319 0.0190896585415 0.00657653854115 0.00112518604986 6.31605753419e-05 15831.6613491 2015-03-23 21:06:46.470000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
153 North Carolina 4 Greensboro 1 1 1 1 0.172688571657 0.0781592427964 0.0166284359373 0.00114769746469 870.309757812 2015-03-23 21:06:46.470000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 1 1 1 0.105717647652 0.0128676901846 0.00100557434492 0.000101263737529 3.36387885388e-06 297274.866177 2015-03-23 21:06:46.470000
|
||||
9 Arizona State 3 Greensboro 1 1 1 0.894282352348 0.233253680986 0.0374966288417 0.00736319948063 0.000472402231103 2115.84012936 2015-03-23 21:06:46.470000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 0.75387862883 0.233496725722 0.0911965304156 0.0127565687147 77.3909860376 2015-03-23 21:06:46.470000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 0.862541182062 0.572777198495 0.337337526961 0.0787326485186 11.7012112359 2015-03-23 21:06:46.470000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 1 0.137458817938 0.0403163111256 0.00948716272344 0.000675583012877 1479.20299643 2015-03-23 21:06:46.470000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 1 0.182746184966 0.0327466274266 0.00693538127182 0.000438777877234 2278.05747278 2015-03-23 21:06:46.470000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 0.817253815034 0.354159862953 0.160458171592 0.0257352039104 37.8572790595 2015-03-23 21:06:46.470000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 21:06:46.470000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-19.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-19.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 1 0.988789411007 0.962913662431 0.902151653655 0.765607811996 0.306151771613 2015-03-23 23:29:28.670000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
164 Rutgers 8 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
251 Texas 5 Albany 1 1 1 1 0.011210588993 0.00464591898075 0.00178369723061 0.000376654128307 2653.95563395 2015-03-23 23:29:28.670000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
58 South Florida 6 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
97 Louisville 3 Albany 1 1 1 1 0.714143582818 0.0275181539511 0.0142505611121 0.0044913308643 221.651154015 2015-03-23 23:29:28.670000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2168 Dayton 7 Albany 1 1 1 1 0.285856417182 0.00492226463749 0.00160066944066 0.00027527938403 3631.67305151 2015-03-23 23:29:28.670000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
120 Maryland 1 Spokane 1 1 1 1 0.734506138555 0.457691823395 0.0460367906169 0.0178336508303 55.0737680421 2015-03-23 23:29:28.670000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.265493861445 0.106575518096 0.00533564469606 0.00124690126765 800.988117216 2015-03-23 23:29:28.670000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.31108134088 0.104107913112 0.001680136912 0.000159614253315 6264.10464594 2015-03-23 23:29:28.670000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 0.68891865912 0.331624745397 0.027160846337 0.00906694060578 109.290785335 2015-03-23 23:29:28.670000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 1 0.862136540571 0.698910468397 0.417014172702 0.0963269283776 9.38131306419 2015-03-23 23:29:28.670000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
183 Syracuse 8 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
153 North Carolina 4 Greensboro 1 1 1 1 0.137863459429 0.06341982406 0.0137506437831 0.000881514331106 1133.4115061 2015-03-23 23:29:28.670000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
9 Arizona State 3 Greensboro 1 1 1 1 0.235494163442 0.0284901464043 0.00506756423705 0.000263380194319 3795.79270335 2015-03-23 23:29:28.670000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 0.764505836558 0.209179561138 0.0823676635743 0.0107477116306 92.043062037 2015-03-23 23:29:28.670000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 0.862541182062 0.572777198495 0.318327860866 0.0696409641291 13.3593646714 2015-03-23 23:29:28.670000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 1 0.137458817938 0.0403163111256 0.00852434005409 0.000554689517637 1801.81034381 2015-03-23 23:29:28.670000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
2294 Iowa 3 Oklahoma City 1 1 1 1 0.182746184966 0.0327466274266 0.00620882473804 0.00035817397599 2790.93930055 2015-03-23 23:29:28.670000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 0.817253815034 0.354159862953 0.148738930046 0.0221684545138 44.1091436879 2015-03-23 23:29:28.670000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-23 23:29:28.670000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-20.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-20.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 1 0.988789411007 0.962913662431 0.902151653655 0.768613592711 0.301043865843 2015-03-27 22:22:50.090000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
164 Rutgers 8 Albany 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
251 Texas 5 Albany 1 1 1 1 0.011210588993 0.00464591898075 0.00178369723061 0.000372515299633 2683.45350026 2015-03-27 22:22:50.090000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
58 South Florida 6 Albany 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
97 Louisville 3 Albany 1 1 1 1 0.714143582818 0.0275181539511 0.0142505611121 0.00447844188317 222.291945299 2015-03-27 22:22:50.090000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2168 Dayton 7 Albany 1 1 1 1 0.285856417182 0.00492226463749 0.00160066944066 0.000271163904966 3686.80645833 2015-03-27 22:22:50.090000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
120 Maryland 1 Spokane 1 1 1 1 0.734506138555 0.457691823395 0.0460367906169 0.017853534105 55.0113193343 2015-03-27 22:22:50.090000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.265493861445 0.106575518096 0.00533564469606 0.00123573433608 808.235424477 2015-03-27 22:22:50.090000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.31108134088 0.104107913112 0.001680136912 0.000155436848044 6432.48094472 2015-03-27 22:22:50.090000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 0.68891865912 0.331624745397 0.027160846337 0.00905124410685 109.482049561 2015-03-27 22:22:50.090000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 1 1 0.792643251935 0.445355336294 0.0952438903188 9.49936113122 2015-03-27 22:22:50.090000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
183 Syracuse 8 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
153 North Carolina 4 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
9 Arizona State 3 Greensboro 1 1 1 1 0.235494163442 0.0227243724226 0.00392508305241 0.000211811652509 4720.17557346 2015-03-27 22:22:50.090000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 0.764505836558 0.184632375642 0.0719381750706 0.0096061588305 103.099881924 2015-03-27 22:22:50.090000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 0.862541182062 0.527563420218 0.290417673117 0.0644107194572 14.5253660948 2015-03-27 22:22:50.090000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
24 Stanford 4 Oklahoma City 1 1 1 1 0.137458817938 0.0316548712446 0.00625906547403 0.000422377307736 2366.55143254 2015-03-27 22:22:50.090000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
2294 Iowa 3 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 1 0.440781708537 0.182104666992 0.0280733792386 34.6209343913 2015-03-27 22:22:50.090000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-27 22:22:50.090000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-21.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-21.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 1 0.988789411007 0.962913662431 0.902151653655 0.761824937506 0.312637524408 2015-03-28 00:21:10.600000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.600000
|
||||
164 Rutgers 8 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.600000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.600000
|
||||
251 Texas 5 Albany 1 1 1 1 0.011210588993 0.00464591898075 0.00178369723061 0.000355187125357 2814.41736344 2015-03-28 00:21:10.610000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
58 South Florida 6 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
97 Louisville 3 Albany 1 1 1 1 0.714143582818 0.0275181539511 0.0142505611121 0.00430259376533 231.417944743 2015-03-28 00:21:10.610000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2168 Dayton 7 Albany 1 1 1 1 0.285856417182 0.00492226463749 0.00160066944066 0.000257689461978 3879.6398691 2015-03-28 00:21:10.610000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
120 Maryland 1 Spokane 1 1 1 1 0.734506138555 0.457691823395 0.0460367906169 0.0172280764274 57.0447854533 2015-03-28 00:21:10.610000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.265493861445 0.106575518096 0.00533564469606 0.00118034481691 846.210057326 2015-03-28 00:21:10.610000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.31108134088 0.104107913112 0.001680136912 0.000146479168903 6825.909297 2015-03-28 00:21:10.610000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 0.68891865912 0.331624745397 0.027160846337 0.00870639063604 113.858159001 2015-03-28 00:21:10.610000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 1 1 0.776849988534 0.410798363254 0.0886145180474 10.2848325764 2015-03-28 00:21:10.610000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
183 Syracuse 8 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
153 North Carolina 4 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
9 Arizona State 3 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 1 0.223150011466 0.0742816992413 0.00921894339938 107.47230064 2015-03-28 00:21:10.610000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 1 0.629337344095 0.359203006065 0.083754756897 10.9396203517 2015-03-28 00:21:10.610000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
24 Stanford 4 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
2294 Iowa 3 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 1 0.370662655905 0.15571693144 0.0244100827484 39.9666780038 2015-03-28 00:21:10.610000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 00:21:10.610000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-22.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-22.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 1 1 0.980098855019 0.931811677747 0.814717733927 0.227418967769 2015-03-28 14:03:24.050000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
164 Rutgers 8 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
251 Texas 5 Albany 0 1 1 1 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
58 South Florida 6 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
97 Louisville 3 Albany 1 1 1 1 0.714143582818 0.0172454066404 0.0091070261421 0.00283156654274 352.161398436 2015-03-28 14:03:24.050000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2168 Dayton 7 Albany 1 1 1 1 0.285856417182 0.00265573834107 0.000899462278985 0.000153161730039 6528.04612493 2015-03-28 14:03:24.050000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
120 Maryland 1 Spokane 1 1 1 1 0.734506138555 0.457691823395 0.0338142479183 0.0127510724538 77.4247759254 2015-03-28 14:03:24.050000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.265493861445 0.106575518096 0.00369679318811 0.000828427124339 1206.10678178 2015-03-28 14:03:24.050000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.31108134088 0.104107913112 0.00107595222077 9.57000549376e-05 10448.3147956 2015-03-28 14:03:24.050000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 0.68891865912 0.331624745397 0.0195948405049 0.00633828443523 156.771398589 2015-03-28 14:03:24.050000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 1 1 0.776849988534 0.410798363254 0.0699413424242 13.2976952592 2015-03-28 14:03:24.050000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
183 Syracuse 8 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
153 North Carolina 4 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
9 Arizona State 3 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 1 0.223150011466 0.0742816992413 0.00699844059478 141.888974545 2015-03-28 14:03:24.050000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 1 0.629337344095 0.359203006065 0.0665327665148 14.0301881672 2015-03-28 14:03:24.050000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
24 Stanford 4 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
2294 Iowa 3 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 1 0.370662655905 0.15571693144 0.0188115041977 52.1589600433 2015-03-28 14:03:24.050000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 14:03:24.050000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-23.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-23.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 1 1 0.989690183452 0.940930463871 0.822690629035 0.21552375183 2015-03-28 17:00:41.640000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
164 Rutgers 8 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
251 Texas 5 Albany 0 1 1 1 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
58 South Florida 6 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
97 Louisville 3 Albany 0 1 1 1 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2168 Dayton 7 Albany 1 1 1 1 1 0.0103098165482 0.00367796961067 0.000673083946226 1484.69878335 2015-03-28 17:00:41.640000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
120 Maryland 1 Spokane 1 1 1 1 0.734506138555 0.457691823395 0.032231915155 0.0121983382499 80.9783793101 2015-03-28 17:00:41.640000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
150 Duke 4 Spokane 1 1 1 1 0.265493861445 0.106575518096 0.00350506680876 0.000787511142313 1268.82330315 2015-03-28 17:00:41.640000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.31108134088 0.104107913112 0.00102667021811 9.09820602638e-05 10990.1777893 2015-03-28 17:00:41.640000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 0.68891865912 0.331624745397 0.0186279143368 0.00604799239469 164.344123263 2015-03-28 17:00:41.640000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 1 1 0.776849988534 0.410798363254 0.0679242805115 13.7222759295 2015-03-28 17:00:41.640000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
183 Syracuse 8 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
153 North Carolina 4 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
9 Arizona State 3 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 1 0.223150011466 0.0742816992413 0.00671697953898 147.876439804 2015-03-28 17:00:41.640000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 1 0.629337344095 0.359203006065 0.0647321037991 14.4482851832 2015-03-28 17:00:41.640000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
24 Stanford 4 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
2294 Iowa 3 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 1 0.370662655905 0.15571693144 0.0181380993218 54.1325683171 2015-03-28 17:00:41.640000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 17:00:41.640000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-24.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-24.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 1 1 0.989690183452 0.935792563436 0.818296230293 0.2220513342 2015-03-28 18:46:57.700000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
164 Rutgers 8 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
251 Texas 5 Albany 0 1 1 1 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
58 South Florida 6 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
97 Louisville 3 Albany 0 1 1 1 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2168 Dayton 7 Albany 1 1 1 1 1 0.0103098165482 0.0033785694087 0.000623412767983 1603.07365931 2015-03-28 18:46:57.700000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
120 Maryland 1 Spokane 1 1 1 1 1 0.620611588965 0.0432670484177 0.0162643762575 60.484067029 2015-03-28 18:46:57.700000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
150 Duke 4 Spokane 0 1 1 1 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2250 Gonzaga 11 Spokane 1 1 1 1 0.31108134088 0.0872582954971 0.000881345370983 7.98001555655e-05 12530.3038918 2015-03-28 18:46:57.700000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 0.68891865912 0.292130115538 0.016680473367 0.00547891951968 181.517738472 2015-03-28 18:46:57.700000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 1 1 0.776849988534 0.410798363254 0.0686794986767 13.5603858396 2015-03-28 18:46:57.700000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
183 Syracuse 8 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
153 North Carolina 4 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
9 Arizona State 3 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 1 0.223150011466 0.0742816992413 0.00679628663857 146.139173667 2015-03-28 18:46:57.700000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 1 0.629337344095 0.359203006065 0.065424505074 14.2847927374 2015-03-28 18:46:57.700000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
24 Stanford 4 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
2294 Iowa 3 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 1 0.370662655905 0.15571693144 0.0183569706172 53.4752192971 2015-03-28 18:46:57.700000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 18:46:57.700000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-25.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-25.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 1 1 0.989690183452 0.933269300525 0.816138572164 0.225282120104 2015-03-28 21:41:27.490000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
164 Rutgers 8 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
251 Texas 5 Albany 0 1 1 1 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
58 South Florida 6 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
97 Louisville 3 Albany 0 1 1 1 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2168 Dayton 7 Albany 1 1 1 1 1 0.0103098165482 0.00307968647042 0.000580982273988 1720.2229095 2015-03-28 21:41:27.490000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
120 Maryland 1 Spokane 1 1 1 1 1 0.598139312268 0.0426015756534 0.0162451401835 60.5568710828 2015-03-28 21:41:27.490000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
150 Duke 4 Spokane 0 1 1 1 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2250 Gonzaga 11 Spokane 0 1 1 1 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 1 0.401860687732 0.0210494373511 0.00650086421856 152.825701688 2015-03-28 21:41:27.490000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 1 1 0.776849988534 0.410798363254 0.0692194459198 13.4468073489 2015-03-28 21:41:27.490000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
183 Syracuse 8 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
153 North Carolina 4 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
9 Arizona State 3 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
52 Florida State 2 Greensboro 1 1 1 1 1 0.223150011466 0.0742816992413 0.00687184514716 144.521323398 2015-03-28 21:41:27.490000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 1 0.629337344095 0.359203006065 0.0659057411363 14.1731849572 2015-03-28 21:41:27.490000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
24 Stanford 4 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
2294 Iowa 3 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 1 0.370662655905 0.15571693144 0.0185374089565 52.9449716163 2015-03-28 21:41:27.490000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-28 21:41:27.490000
|
||||
|
65
march-madness-predictions-2015/womens/bracket-26.tsv
Normal file
65
march-madness-predictions-2015/womens/bracket-26.tsv
Normal file
@@ -0,0 +1,65 @@
|
||||
team_id team_name team_seed team_region playin_flag team_alive rd1_win rd2_win rd3_win rd4_win rd5_win rd6_win rd7_win win_odds timestamp
|
||||
41 Connecticut 1 Albany 1 1 1 1 1 0.989690183452 0.933269300525 0.813920041252 0.22862191532 2015-03-29 14:44:05.540000
|
||||
2597 St. Francis (NY) 16 Albany 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
164 Rutgers 8 Albany 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2550 Seton Hall 9 Albany 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
251 Texas 5 Albany 0 1 1 1 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
98 Western Kentucky 12 Albany 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
25 California 4 Albany 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2724 Wichita State 13 Albany 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
58 South Florida 6 Albany 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
99 LSU 11 Albany 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
97 Louisville 3 Albany 0 1 1 1 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
252 Brigham Young 14 Albany 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2168 Dayton 7 Albany 1 1 1 1 1 0.0103098165482 0.00307968647042 0.000559522061936 1786.23962473 2015-03-29 14:44:05.540000
|
||||
66 Iowa State 10 Albany 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
96 Kentucky 2 Albany 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2634 Tennessee State 15 Albany 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
120 Maryland 1 Spokane 1 1 1 1 1 0.598139312268 0.0426015756534 0.0158622750375 62.0426592426 2015-03-29 14:44:05.540000
|
||||
166 New Mexico State 16 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
163 Princeton 8 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2739 Green Bay 9 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
344 Mississippi State 5 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2655 Tulane 12 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
150 Duke 4 Spokane 0 1 1 1 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
399 Albany 13 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
45 George Washington 6 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2250 Gonzaga 11 Spokane 0 1 1 1 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
204 Oregon State 3 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2571 South Dakota State 14 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
236 Chattanooga 7 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
221 Pittsburgh 10 Spokane 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2633 Tennessee 2 Spokane 1 1 1 1 1 0.401860687732 0.0210494373511 0.00631867305372 157.261076574 2015-03-29 14:44:05.540000
|
||||
68 Boise State 15 Spokane 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2579 South Carolina 1 Greensboro 1 1 1 1 1 1 0.512690686979 0.0823204475431 11.1476501871 2015-03-29 14:44:05.540000
|
||||
2542 Savannah State 16 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
183 Syracuse 8 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
158 Nebraska 9 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
194 Ohio State 5 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
256 James Madison 12 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
153 North Carolina 4 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2335 Liberty 13 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
245 Texas A&M 6 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2031 Arkansas-Little Rock 11 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
9 Arizona State 3 Greensboro 0 1 1 1 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
195 Ohio 14 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
526 Florida Gulf Coast 7 Greensboro 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
197 Oklahoma State 10 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
52 Florida State 2 Greensboro 0 1 1 1 1 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2011 Alabama State 15 Greensboro 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
87 Notre Dame 1 Oklahoma City 1 1 1 1 1 0.629337344095 0.342889251139 0.063573698702 14.7297753696 2015-03-29 14:44:05.540000
|
||||
149 Montana 16 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
135 Minnesota 8 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
305 DePaul 9 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
201 Oklahoma 5 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2514 Quinnipiac 12 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
24 Stanford 4 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2463 Cal State Northridge 13 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
264 Washington 6 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2390 Miami (FL) 11 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
2294 Iowa 3 Oklahoma City 0 1 1 1 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
44 American University 14 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
77 Northwestern 7 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
8 Arkansas 10 Oklahoma City 0 1 1 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
239 Baylor 2 Oklahoma City 1 1 1 1 1 0.370662655905 0.144420061882 0.0174453423499 56.3218902757 2015-03-29 14:44:05.540000
|
||||
2466 Northwestern State 15 Oklahoma City 0 1 0 0 0 0 0 0 -- 2015-03-29 14:44:05.540000
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user