Categorical Data Analysis in R

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

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

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

    This is explained exactly what I was looking for. Thanks!

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

    This was SO helpful, thank you so much! I followed along with my own COVID-19 dataset and it worked perfectly :)

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

    very nice video, please we want more. Thank you very much

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

    Really useful with clear steps explained

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

    Awesome! evry helpful

  • @MariaMartinez-kx5fc
    @MariaMartinez-kx5fc 2 года назад

    This is a wonderful video, it helps me a lot! Thanks!

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

    Thank you

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

    nice and very clear, we need more of this plz

  • @sarazr
    @sarazr 2 года назад +1

    I have a question: how did you make that when uploaded your variables are factors. Mine are always firstly integers.

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

      In this dataset, there are no numerical columns, so it just happened naturally. But in general, you can always use factor() function to convert integers into a factor.

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

    Thanks for upload this, a very good explanation

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

    Thanks for this video!

  • @bassamal-kaaki3253
    @bassamal-kaaki3253 4 года назад +1

    How do you put the data in the variables you made from a category? Example you have a body fat category and your variables under body fat are athlete, average and obese. How do you place the original data in these variables according to a set criteria?

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

      You need to use cut() function. Say, you decided that you will define body fat under 22% as lean, 22-30% as normal, and over 30 obese. Then in your code you do something like
      my_data$body_composition

    • @bassamal-kaaki3253
      @bassamal-kaaki3253 4 года назад

      Thank u. Will try your concept . Appreciate your time.

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

    He good one,but what if its having a missing value

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

    Very good video

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

    why does my Rstudio asks me if I want to use a personal library instead? (when I try to install.package)

  • @justinc.mwansa4297
    @justinc.mwansa4297 3 года назад

    I keep on getting the "red" warning stuff in the console.

    • @justinc.mwansa4297
      @justinc.mwansa4297 3 года назад

      Do I need to to run some set up or something?

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

      What does the warning say?

    • @justinc.mwansa4297
      @justinc.mwansa4297 3 года назад

      @@ShaltayevBUSN231 I was leaving out the ".cvs" at the end when entering the command.
      It's fine now.. Thanks

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

    sir, where can I get this data? I would like to practise it following your instruction

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

      This is a pretty famous data set. You can find it here, for example:
      cran.r-project.org/web/packages/titanic/titanic.pdf

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

    Sir I have a variable containing body parts(47 body parts) I need to categorise them from 1-47... Kindly give me a line of code

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

      What exactly are you trying to do? Create a column in a data set with "partID" against each record? Or something else?

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

      @@ShaltayevBUSN231 photos.app.goo.gl/aLXc1GqS7Ybk2CkH7 i want to do it this way sir, for that I need to number them like.. if it is knee then it is 1, if it is hand It is 2, if it is head it is 3..like that i need to categorise them sir.

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

    And how to export/save this cross table?

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

      In what form do you need to export/save the cross table? As a file?