Machine Learning in R: Building a Linear Regression Model

Поделиться
HTML-код
  • Опубликовано: 5 фев 2020
  • In this machine learning in R tutorial video, I will go over the steps on how you can build a simple linear regression model using the caret package in the R language. The dataset that we will be using is the Boston Housing dataset where we will be predicting the median home value in Boston.
    🌟 Buy me a coffee: www.buymeacoffee.com/dataprof...
    📎CODE: github.com/dataprofessor/code...
    ⭕ Playlist:
    Check out our other videos in the following playlists.
    ✅ Data Science 101: bit.ly/dataprofessor-ds101
    ✅ Data Science RUclipsr Podcast: bit.ly/datascience-youtuber-p...
    ✅ Data Science Virtual Internship: bit.ly/dataprofessor-internship
    ✅ Bioinformatics: bit.ly/dataprofessor-bioinform...
    ✅ Data Science Toolbox: bit.ly/dataprofessor-datascie...
    ✅ Streamlit (Web App in Python): bit.ly/dataprofessor-streamlit
    ✅ Shiny (Web App in R): bit.ly/dataprofessor-shiny
    ✅ Google Colab Tips and Tricks: bit.ly/dataprofessor-google-c...
    ✅ Pandas Tips and Tricks: bit.ly/dataprofessor-pandas
    ✅ Python Data Science Project: bit.ly/dataprofessor-python-ds
    ✅ R Data Science Project: bit.ly/dataprofessor-r-ds
    ⭕ Subscribe:
    If you're new here, it would mean the world to me if you would consider subscribing to this channel.
    ✅ Subscribe: ruclips.net/user/dataprofessor...
    ⭕ Recommended Tools:
    Kite is a FREE AI-powered coding assistant that will help you code faster and smarter. The Kite plugin integrates with all the top editors and IDEs to give you smart completions and documentation while you’re typing. I've been using Kite and I love it!
    ✅ Check out Kite: www.kite.com/get-kite/?...
    ⭕ Recommended Books:
    ✅ Hands-On Machine Learning with Scikit-Learn : amzn.to/3hTKuTt
    ✅ Data Science from Scratch : amzn.to/3fO0JiZ
    ✅ Python Data Science Handbook : amzn.to/37Tvf8n
    ✅ R for Data Science : amzn.to/2YCPcgW
    ✅ Artificial Intelligence: The Insights You Need from Harvard Business Review: amzn.to/33jTdcv
    ✅ AI Superpowers: China, Silicon Valley, and the New World Order: amzn.to/3nghGrd
    ⭕ Stock photos, graphics and videos used on this channel:
    ✅ 1.envato.market/c/2346717/628...
    ⭕ Follow us:
    ✅ Medium: bit.ly/chanin-medium
    ✅ FaceBook: / dataprofessor
    ✅ Website: dataprofessor.org/ (Under construction)
    ✅ Twitter: / thedataprof
    ✅ Instagram: / data.professor
    ✅ LinkedIn: / chanin-nantasenamat
    ✅ GitHub 1: github.com/dataprofessor/
    ✅ GitHub 2: github.com/chaninlab/
    ⭕ Disclaimer:
    Recommended books and tools are affiliate links that gives me a portion of sales at no cost to you, which will contribute to the improvement of this channel's contents.
    #dataprofessor #linearregression #regression #machinelearning #deploymachinelearning #datascienceproject #learnr #rprogramming #learnrprogramming #datascience #datamining #bigdata #datascienceworkshop #dataminingworkshop #dataminingtutorial #datasciencetutorial #ai #artificialintelligence #r #boston #bostonhousing #bostondata #tutorial #dataanalytics #dataanalysis #mlr #simpleregression #simplelinearregression
  • НаукаНаука

Комментарии • 17

  • @theforester_
    @theforester_ 2 года назад +4

    your videos are simply the best ones i've found so far. thanks very much.

  • @JJ-io4pe
    @JJ-io4pe 4 года назад +4

    Very interesting. Planning to watch this again and follow along in R Studio this weekend.

  • @ama016
    @ama016 3 года назад +3

    Thank you! You are fantastic!! Love from Norway

  • @jeffersonjones7863
    @jeffersonjones7863 4 года назад +2

    Learn or refresh R piece by piece - great series!!

    • @DataProfessor
      @DataProfessor  4 года назад +1

      Thanks for the comment! Right, this is part of the "Machine Learning in R" series, planning on releasing a "Data Visualisation in R" series soon 😃. Next up, "What programming language to learn for Data science? R vs Python"

    • @jeffersonjones7863
      @jeffersonjones7863 4 года назад +1

      @@DataProfessor cool! Looking forward to that 💪

  • @mehraadi09
    @mehraadi09 3 года назад +4

    Great!!! Please upload more videos on R

    • @DataProfessor
      @DataProfessor  3 года назад

      Thanks for watching, will definitely do 😃

  • @benbishop7775
    @benbishop7775 2 года назад

    I have a smaller data set so my final Testing plot doesn't have many points. How do I plot all of my data points onto this model? I've looked and can't find this information anywhere!

  • @PAULSHOWTO3
    @PAULSHOWTO3 2 года назад

    how do you split data data without using random sample method? ( Coz I have time stamps in my dataset that's why won't using random sample)

  • @justalittlecod
    @justalittlecod 2 года назад

    this is awesome! trying my own project. any reason i would be getting an error when trying to create my data partition? I included it below
    > TrainingIndex

  • @mistazed1170
    @mistazed1170 Год назад

    Hey @data professor. Is it possible to contact you or pay for for a 1 hr teams meeting where I can go through some data and ask questions

  • @brianpaviaym3691
    @brianpaviaym3691 3 года назад

    Can you please explain how to use the train function in the caret package if we want to run a regression analysis for a time series data. Let's say for the variables of y (dependent variable) and x1, x2, x3, x4 (independent variables), all are stock index returns

    • @RPiao
      @RPiao 3 года назад

      I think you can just add ~ x1 + x2 + x3 and so on.