R tutorial - Learn How to Create and Name Matrices in R

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

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

  • @AJ-iu6nw
    @AJ-iu6nw 7 лет назад +47

    My man! Thanks for these organized, concise, STRAIGHT-TO-THE-POINT, ZERO BOOLSHHT tutorials. You guys understand the importance of clarity and time.

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

    Omg! Now I understand it very well...thx heaps for very well organized information and clear explanations.
    Before I found your videos, I just want to run away from R class😖..without any of programming and statistics background.
    Am so lucky I found these videos before my exam..oh dear lord..thx Quarantine

  • @bellaghazaryan3153
    @bellaghazaryan3153 6 лет назад +4

    May the Force be with you))) Thank you for great and up to the point lessons))) it is very helpful)))

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

    Thanks so much for these really helpful videos!

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

    thank you!

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

    Ay thanks a lot!! That was so helpful , thank you very much

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

    Thank you

  • @sheetalsharma8373
    @sheetalsharma8373 5 лет назад +1

    tysm sir i was jst mad for dis video thax a lot

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

    Great videos. Thanks!

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

    Great job! thank you

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

    great lectures ,thank you

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

    one minor slip up, I think at 4:47 the dimnames should have the matrix m as argument. dimnames(m)=list(c("row1","row2"),c("col1","col2","col3"))

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

      yes, thats correct. He put one extra bracket.

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

      I believe that there is no need for dimnames to have (m) in the argument, because the dimnames is already an argument of your matrix "m". You would be right if you would add dimnames after the matrix was created :))

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

    can I make the rownames bold, or make the line separating rownames from actual values bold?I need to distinct the names from the actual values?

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

    I'm trying to understand what it means for a matrix to be able to contain only one atomic type. Because during d tutorial, you used the "rbind" and "cbind" function to merge both character and numeric data set in one metrix. So how do explain this. Because that is a single metrix with two different data types

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

      they were coerced automatically, so the numeric data turned into character data.

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

    Actualy matrixes can have more than 2 dimensions. Not sure if this is correct in R.

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

    I have the different variables data in a single column, how can I convert these variables in different columns?

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

    How to create a matrix from inputs by user?

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

    when ever we are declaring matrix and when we need to set byrow = True then in that case True always be in double quotes. Please correct this at 2:10 seconds of this video time.
    Correct syntax is:
    matrix(1:6, nrow = 2, byrow = "True")

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

      Hi! Thank you for your message. With regards to the syntax that is used in this video, you'll see that the documentation (www.rdocumentation.org/packages/base/versions/3.4.0/topics/matrix) prefers a notation without double quotes because the class that is expected is a logical one and not character. :) Hope this helps!