R - Regression Trees - CART

Поделиться
HTML-код
  • Опубликовано: 2 окт 2024

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

  • @DarkDima99
    @DarkDima99 3 года назад +1

    Thank you so much for such a comprehensive tutorial! You've helped me finish my graduation paper!:)

  • @ashwathsalimath754
    @ashwathsalimath754 7 лет назад

    Thank you Jalayer for creating this Video.

  • @cindyo6298
    @cindyo6298 6 лет назад +1

    Great video!
    Nice choice of data, I need sleep

  • @АннаФилатова-ф7ъ
    @АннаФилатова-ф7ъ 5 лет назад

    Thank you! This video helped me in writing a term paper on data analysis.

  • @Radioactivekid1972
    @Radioactivekid1972 5 лет назад

    Thank you for your very clear example. Regards,

  • @lauriepoorie
    @lauriepoorie 4 месяца назад

    I’m confused. Why is the method a nova if it’s a CART. Doesn’t CART use gini?

  • @89rmehra
    @89rmehra 7 лет назад

    Very nice video.. Thanks for the explanation! :)

  • @yucehankucukmotor4683
    @yucehankucukmotor4683 6 лет назад +1

    Based on the background noise, I can be hundred percent certain that you are from NY.

  • @darshasharma8522
    @darshasharma8522 6 лет назад +1

    hi
    can you please tell me how to increase the accuracy of decision tree?
    thanks in advance..

  • @zeroun92
    @zeroun92 6 лет назад +1

    Wow you made this look so easy in R. I need to figure it out in Matlab and have my own code written for a class.

  • @VenkateshDataScientist
    @VenkateshDataScientist 6 лет назад

    R Studio doubt :
    I am building a predictive model with 1 million observations and having 15 variables .i am getting error like -" Can not allocate the vector of 432GB "
    or " Can not allocate the vector of 3.8 GB "
    I am using 16GB RAM .my file size is just 140MB . and i closed all the applications in my system .still error remains same .
    Any suggestions much appreciated..

  • @katelyntang8774
    @katelyntang8774 6 лет назад

    Awesome!!!!

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

    Amazing Video & Thank You- I’ve spent hours on a simple regression tree- but thanks to you I’m free!!!

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

    Crystal clear explanations. Excellent video.

  • @lovehatred009
    @lovehatred009 7 лет назад +1

    Is there any way that the classification tree can provide information on which variables will provide more accurate classification among given variables ?

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

      Yeah! Maybe use summary(rpart model)..summary(m1) in case of this tutorial and then scroll down to "variable importance". Hope this helps.

  • @JuanIgnaciodeOyarbide
    @JuanIgnaciodeOyarbide 6 лет назад

    Good tutorial. About just a phrase at the end, you should choose the model with less MSE on the test set (just to make it clear), because if not, you could be overfitting your data and your prediction power will be worthless.
    It could be also interesting analyse the cost of complexity pruning in this example, maybe with more observations...
    Thanks!

  • @juansenior6108
    @juansenior6108 6 лет назад +1

    database is df

    • @Tiggs153
      @Tiggs153 6 лет назад

      Thank you Juan, I specifically went to the comments to check if this correction had been made! Especially since order became the criteria for my first split.

  • @andy-nf9ji
    @andy-nf9ji 2 года назад

    Thank you very much!

  • @דןשטיבלמן
    @דןשטיבלמן 7 лет назад

    jalayer hi. first i would like to thank you for sharing your knowledge with us. please can you explain on what logic algorithm does the decision trees base on ?
    and second - can you make for us video about random forest algorithm as well ? (in R
    thank you so much

  • @rjmbowie
    @rjmbowie 4 года назад

    Incredible explanation, thanks

  • @ShreeMayaG
    @ShreeMayaG 5 лет назад

    Thanks. Very clear explanation

  • @AhlamLamo
    @AhlamLamo 5 лет назад

    thank you a lot

  • @kalyanasundaramsp8267
    @kalyanasundaramsp8267 6 лет назад

    super and great

  • @subarna89
    @subarna89 4 года назад

    I do not have enough words to thank you !

  • @jhgfdsa91
    @jhgfdsa91 5 лет назад

    I have a question: Where are nodes 4,5,8,9, etc.?
    In the output we can only see nodes 1,2,3,6,12,13,26,27,7,14,15.
    Can anyone help me with this question?

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

      Nodes 4,5,8,9 are dropped from the model. The output is an optimal subtree , found by adding an additional parameter tothe objective function which weighs the cost of an additional tree against its benefit in reduction of your SSE/MAPE/MAE

  • @deepakpawar2878
    @deepakpawar2878 6 лет назад

    can we get the dataset that you are using

  • @axisgraf
    @axisgraf 5 лет назад

    thanks so much! very helpful.

  • @Lukas-ip6mc
    @Lukas-ip6mc 6 лет назад

    How to implement regression tree (CART) in python ? Please help me, thank you

  • @winnumber101
    @winnumber101 7 лет назад

    fire ass video

  • @hollybailey1312
    @hollybailey1312 7 лет назад

    How did you chose type=3?

    • @Tiggs153
      @Tiggs153 6 лет назад

      In case anyone else has this question going forward, the type is a just the style and a personal preference (or predicted audience preference). I personally prefer type = 2 for this chart. It ranges from 0 to 4.

  • @carla22288
    @carla22288 7 лет назад

    ¿where did P1 come from?.
    I didn't find it calculated in this video