Это видео недоступно.
Сожалеем об этом.

Multiple linear regression using R studio (Aug 2022)

Поделиться
HTML-код
  • Опубликовано: 25 авг 2022
  • This video provides a general overview of linear regression using R Studio, covering a variety of functions that you might use to obtain output of interest. I cover some basic functions for screening data and examining correlations among variables, the lm() function for performing the linear regression, and various functions for different diagnostics one might be interested in obtaining. The video is not designed to be an exhaustive or comprehensive overview of regression and all aspects of decision-making with regression.
    A copy of the data (referenced in the video) can be downloaded here:
    drive.google.com/file/d/1d3P2...
    You can also download a supplemental Powerpoint here:
    drive.google.com/file/d/1P_jh...

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

  • @peternaumann9983
    @peternaumann9983 11 дней назад

    Awesome recap before linear models II!!! Thankyou Sir

  • @drryangagnon
    @drryangagnon Год назад +6

    Mike, again excellent work. I was preparing some materials for my multivariate students to review, and this is just what I had in mind.

  • @remyxi
    @remyxi Год назад +3

    I think it would be significantly more useful if we can have a case-study-like tutorial/walkthrough so everyone can see your analysis method and conclusion. Btw, I learned some new things from this video too nevertheless, thanks!!

  • @user-kb8hy1wi2e
    @user-kb8hy1wi2e 7 месяцев назад

    It has been a while since I last used R Studio, so I watched this a a refresher. It was super helpful. Just wondering if you have a walkthrough of a dataset that include a categorial variable.

  • @maryamfereidouni-tx8sk
    @maryamfereidouni-tx8sk Год назад

    For some packages (except psych and car) I have difficulty installing. What should I do?

  • @MA-ib2mb
    @MA-ib2mb 5 месяцев назад

    Hi Crowson,
    Could you please send me the link for the RStudio program you use in this video, to install to my Windows 10 laptop?

  • @oo-fk3cn
    @oo-fk3cn 7 месяцев назад

    Get error in function vcm

    • @oo-fk3cn
      @oo-fk3cn 7 месяцев назад

      What should I do??

  • @galax3017
    @galax3017 29 дней назад

    get error on :
    cor.test(df,use="complete.obs",methods="pearson",adjust="bonferroni")
    Error in cor.test.default(df, use = "complete.obs", methods = "pearson", :
    'x' must be a numeric vector

    • @mikecrowson2462
      @mikecrowson2462  29 дней назад

      Check the variables being correlated to make sure they are not factor or character variables. Your variables should be integer or numeric. You can use the str() function to see what types of variables you are correlating.