Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • datable syntax error

    Hi, I am trying to run the below command using my data and I am getting the error below, does anyone know why?

    statistic iqi not recognized
    r(198);


    dtable age, by(group, tests) continuous(age, statistic(p50 iqi))continuous(, test(kwallis))

  • #2
    You made a typo, the correct statistic is iqr not iqi:
    Code:
    dtable age, by(group, tests) continuous(age, statistic(p50 iqr)) continuous(, test(kwallis))

    Comment


    • #3
      Hi Chen, thank you so much. That worked!

      Comment

      Working...
      X