Announcement

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

  • Three way tables with percentages

    Dear all,
    I want to generate three way table , since there is no way to use tab command following with three variables (e.g. tab v1 v2 v3, col ).
    So i am using table command (e.g. table v1 v2 v3 , col ) but it gives me only the frequencies, i would much appreciate if someone help me to have percentages with table command, or any other commands which can help me to generate three way tables.


    Thank you all,
    Last edited by yousufzai fahim; 11 Nov 2016, 07:16.

  • #2
    Consider

    Code:
    bysort v1 : tab v2 v3

    Comment


    • #3
      The user-written ado program -tab3way- offers some facilities in this area.

      Code:
      ssc descr tab3way

      Comment

      Working...
      X