R - Frequency table of a single variable

Поделиться
HTML-код
  • Опубликовано: 21 авг 2024
  • Instructional video showing how you can determine absolute frequencies, relative frequencies (with or without missing values), and cumulative (relative) frequencies with R (studio).
    Companion website at PeterStatistics...
    Link to R script from video and data file used at: peterstatistic...

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

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

    This video was a great help. Thank you!

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

      Glad it was helpful! Good luck with your study/research/analysis.

  • @anabissa1215
    @anabissa1215 Год назад +1

    Great video
    Thanks!

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

      Glad you liked it!

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

    Muito obrigado, from Brazil!

    • @stikpet
      @stikpet  Год назад +1

      You're welcome. Greetings from The Netherlands :-)

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

    what would cause me to get this error? Error in sjt.frq(data$age) : could not find function "sjt.frq"'

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

      did some digging since I got the same error. It seems the function sjt.frq disappeared from the sjPlot package ever since version 2.6.2. of that Library. I've emailed the creator of that package if the function will return. Tried if an older version of the library can still be loaded, but couldn't find it (only the documentation). Sorry, so for now it seems it no longer works with the SJPLOT package. If the creator gets back to me, I'll let you know.

    • @stikpet
      @stikpet  3 года назад +5

      Just got a reply from the creator of the library. This replacement should give the same result:
      library(sjmisc)
      frq(myData$mar1, out="viewer")

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

      @@stikpet thank you so much!!!