Multiple linear regression using R studio (Aug 2022)

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ต.ค. 2024
  • 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.c...
    You can also download a supplemental Powerpoint here:
    drive.google.c...

ความคิดเห็น • 11

  • @drryangagnon
    @drryangagnon 2 ปีที่แล้ว +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.

    • @mikecrowson2462
      @mikecrowson2462  2 ปีที่แล้ว +1

      Thanks so much, Ryan! Have a terrific class!

  • @peternaumann9983
    @peternaumann9983 2 หลายเดือนก่อน

    Awesome recap before linear models II!!! Thankyou Sir

  • @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!!

  • @JamesMendoza-p2l
    @JamesMendoza-p2l 9 หลายเดือนก่อน

    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.

  • @oo-fk3cn
    @oo-fk3cn 9 หลายเดือนก่อน

    Get error in function vcm

    • @oo-fk3cn
      @oo-fk3cn 9 หลายเดือนก่อน

      What should I do??

  • @MA-ib2mb
    @MA-ib2mb 7 หลายเดือนก่อน

    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?

  • @maryamfereidouni-tx8sk
    @maryamfereidouni-tx8sk ปีที่แล้ว

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

  • @galax3017
    @galax3017 3 หลายเดือนก่อน

    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  3 หลายเดือนก่อน

      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.