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

Поділитися
Вставка
  • Опубліковано 25 січ 2025

КОМЕНТАРІ • 23

  • @AJ-iu6nw
    @AJ-iu6nw 7 років тому +49

    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 7 років тому +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!

  • @baneledludlu7983
    @baneledludlu7983 3 роки тому

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

  • @rook839
    @rook839 9 місяців тому

    thank you!

  • @lindaren9467
    @lindaren9467 4 роки тому

    Great videos. Thanks!

  • @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 5 років тому

      yes, thats correct. He put one extra bracket.

    • @adamtichy7206
      @adamtichy7206 5 років тому +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 :))

  • @sheetalsharma8373
    @sheetalsharma8373 5 років тому +1

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

  • @joaovasconcelos5360
    @joaovasconcelos5360 3 роки тому

    Great job! thank you

  • @elijahmachimbo2635
    @elijahmachimbo2635 Рік тому

    Thank you

  • @Saqlain7861
    @Saqlain7861 7 років тому

    great lectures ,thank you

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

  • @raphaelsouza8697
    @raphaelsouza8697 2 роки тому

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

  • @katrinkostova6201
    @katrinkostova6201 6 років тому

    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?

  • @farrukhmahmood7758
    @farrukhmahmood7758 5 років тому

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

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

  • @vasimraja6811
    @vasimraja6811 4 роки тому

    How to create a matrix from inputs by user?