|
| 1 | +{ |
| 2 | + "cells": [ |
| 3 | + { |
| 4 | + "cell_type": "markdown", |
| 5 | + "metadata": {}, |
| 6 | + "source": [ |
| 7 | + "# Introduction to Statistical Learning \n", |
| 8 | + "Introduction to Statistical Learning by Gareth James, Daniela Witten, Trevor Hastie and Robert Tibshirani is considered a canonical text in the field of statistical/machine learning and is an absolutely fantastic way to move forward in your analytics career. [The text is free to download](http://www-bcf.usc.edu/~gareth/ISL/) and an [online course by the authors themselves](https://lagunita.stanford.edu/courses/HumanitiesSciences/StatLearning/Winter2016/about) is currently available in self-pace mode, meaning you can complete it any time. Make sure to **[REGISTER FOR THE STANDFORD COURSE!](https://lagunita.stanford.edu/courses/HumanitiesSciences/StatLearning/Winter2016/about)** The videos have also been [archived here on youtube](http://www.r-bloggers.com/in-depth-introduction-to-machine-learning-in-15-hours-of-expert-videos/).\n", |
| 9 | + "\n", |
| 10 | + "# How will Houston Data Science cover the course?\n", |
| 11 | + "The Stanford online course covers the entire book in 9 weeks and with the R programming language. The pace that we cover the book is yet to be determined as there are many unknown variables such as interest from members, availability of a venue and general level of skills of those participating. That said, a meeting once per week to discuss the current chapter or previous chapter solutions is the target.\n", |
| 12 | + "\n", |
| 13 | + "\n", |
| 14 | + "# Python in place of R\n", |
| 15 | + "Although R is a fantastic programming language and is the language that all the ISLR labs are written in, the Python programming language, except for rare exceptions, contains analgous libraries that contain the same statistical functionality as those in R.\n", |
| 16 | + "\n", |
| 17 | + "# Notes, Exercises and Programming Assignments all in the Jupyter Notebok\n", |
| 18 | + "ISLR has both end of chapter problems and programming assignments. All chapter problems and programming assignments will be answered in the notebook.\n", |
| 19 | + "\n", |
| 20 | + "# Replicating Plots\n", |
| 21 | + "The plots in ISLR are created in R. Many of them will be replicated here in the notebook when they appear in the text\n", |
| 22 | + "\n", |
| 23 | + "# Book Data\n", |
| 24 | + "The data from the books was downloaded using R. All the datasets are found in either the MASS or ISLR packages. They are now in the data directory. See below" |
| 25 | + ] |
| 26 | + }, |
| 27 | + { |
| 28 | + "cell_type": "code", |
| 29 | + "execution_count": 1, |
| 30 | + "metadata": { |
| 31 | + "collapsed": false |
| 32 | + }, |
| 33 | + "outputs": [ |
| 34 | + { |
| 35 | + "name": "stdout", |
| 36 | + "output_type": "stream", |
| 37 | + "text": [ |
| 38 | + "\u001b[31mAdvertising.csv\u001b[m\u001b[m* carseats.csv khan_xtrain.csv portfolio.csv\r\n", |
| 39 | + "Credit.csv college.csv khan_ytest.csv smarket.csv\r\n", |
| 40 | + "auto.csv default.csv khan_ytrain.csv usarrests.csv\r\n", |
| 41 | + "boston.csv hitters.csv nci60_data.csv \u001b[31mwage.csv\u001b[m\u001b[m*\r\n", |
| 42 | + "caravan.csv khan_xtest.csv nci60_labs.csv weekly.csv\r\n" |
| 43 | + ] |
| 44 | + } |
| 45 | + ], |
| 46 | + "source": [ |
| 47 | + "ls data" |
| 48 | + ] |
| 49 | + }, |
| 50 | + { |
| 51 | + "cell_type": "markdown", |
| 52 | + "metadata": {}, |
| 53 | + "source": [ |
| 54 | + "# ISLR Videos\n", |
| 55 | + "[All Old Videos](https://www.r-bloggers.com/in-depth-introduction-to-machine-learning-in-15-hours-of-expert-videos/)" |
| 56 | + ] |
| 57 | + }, |
| 58 | + { |
| 59 | + "cell_type": "code", |
| 60 | + "execution_count": null, |
| 61 | + "metadata": { |
| 62 | + "collapsed": true |
| 63 | + }, |
| 64 | + "outputs": [], |
| 65 | + "source": [] |
| 66 | + } |
| 67 | + ], |
| 68 | + "metadata": { |
| 69 | + "anaconda-cloud": {}, |
| 70 | + "kernelspec": { |
| 71 | + "display_name": "Python [Root]", |
| 72 | + "language": "python", |
| 73 | + "name": "Python [Root]" |
| 74 | + }, |
| 75 | + "language_info": { |
| 76 | + "codemirror_mode": { |
| 77 | + "name": "ipython", |
| 78 | + "version": 3 |
| 79 | + }, |
| 80 | + "file_extension": ".py", |
| 81 | + "mimetype": "text/x-python", |
| 82 | + "name": "python", |
| 83 | + "nbconvert_exporter": "python", |
| 84 | + "pygments_lexer": "ipython3", |
| 85 | + "version": "3.5.2" |
| 86 | + } |
| 87 | + }, |
| 88 | + "nbformat": 4, |
| 89 | + "nbformat_minor": 0 |
| 90 | +} |
0 commit comments