├── docs ├── html │ ├── images │ │ ├── favicon.ico │ │ ├── sort_asc.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ ├── Sorting icons.psd │ │ ├── sort_asc_disabled.png │ │ └── sort_desc_disabled.png │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ └── glyphicons-halflings-regular.svg │ ├── js │ │ ├── csv_to_html_table.js │ │ ├── dataTables.bootstrap.js │ │ ├── jquery.csv.min.js │ │ └── bootstrap.min.js │ └── css │ │ ├── custom.css │ │ └── dataTables.bootstrap.css ├── data │ └── competitions │ │ └── kaggle-competitions-2017.html └── index.html ├── solutions ├── README.md └── nyc-taxi-trip-duration.md ├── README.md └── data └── competitions └── kaggle-competitions-2017.csv /docs/html/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/images/favicon.ico -------------------------------------------------------------------------------- /docs/html/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/images/sort_asc.png -------------------------------------------------------------------------------- /docs/html/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/images/sort_both.png -------------------------------------------------------------------------------- /docs/html/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/images/sort_desc.png -------------------------------------------------------------------------------- /docs/html/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/images/Sorting icons.psd -------------------------------------------------------------------------------- /docs/html/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /docs/html/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /docs/html/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/html/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/html/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/html/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaggletw/solutions/HEAD/docs/html/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /solutions/README.md: -------------------------------------------------------------------------------- 1 | # 資料收集列表 2 | 3 | 每個比賽文件會用 kaggle 的 url 作為檔案名稱,以競賽的標題作為文件標題 4 | 5 | ### [New York City Taxi Trip Duration](./nyc-taxi-trip-duration.md) 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # A Collection of Solutions for Kaggle Competitions 2 | 3 | ## 目的 4 | 5 | - 通過 Kaggle 平台上的競賽,向他人學習各種不同的技巧、思維、演算法。 6 | - 記錄學習過程,與其他 Kaggler 一同分享。 7 | 8 | ## 流程 9 | 10 | - 整理已經結束的競賽列表 11 | - 目前已經整理 2017 年 12 月前結束的競賽 \[[web](https://kaggletw.github.io/solutions/data/competitions/kaggle-competitions-2017.html)]\[[csv](data/competitions/kaggle-competitions-2017.csv)] 12 | - 收集各競賽相關的公開資源 13 | - 閱讀分享並記錄在這個專頁 14 | 15 | ## 招募 16 | 17 | 有興趣一起參與的 Kaggler 請洽 [drumrick](https://www.facebook.com/pg/RickLiuPage/) 18 | -------------------------------------------------------------------------------- /docs/html/js/csv_to_html_table.js: -------------------------------------------------------------------------------- 1 | var CsvToHtmlTable = CsvToHtmlTable || {}; 2 | 3 | CsvToHtmlTable = { 4 | init: function (options) { 5 | 6 | options = options || {}; 7 | var csv_path = options.csv_path || ""; 8 | var el = options.element || "table-container"; 9 | var allow_download = options.allow_download || false; 10 | var csv_options = options.csv_options || {}; 11 | var datatables_options = options.datatables_options || {}; 12 | var custom_formatting = options.custom_formatting || []; 13 | 14 | $("#" + el).html("
有興趣一起參與的 Kaggler 請洽 drumrick