Announcement

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

  • Tables, two way-table, matrix, macros

    Good evening to everyone,
    I am analyzing enterprise data, and in the descriptives I would like to create a double-entry table with:
    - company areas and
    -classifications(grading)
    The fact is that in each cell, I would like to have the income of the workers in the specific combination of areas and grading. (and I will repeat it by gender)

    And I it could be great to have an extra one in which in each cell there is the gender comparison (and/or t-test)on the average income.

    Could this be possible? Does someone have any suggestions?

    Many thanks in advance for your time.
    Last edited by Chiara Tasselli; 11 Jan 2023, 11:07.

  • #2
    Something like this comes close to my request:

    Code:
    by Female, sort: tabulate area grading, summarize(Income) nostandard 
    by Female, sort: tabulate area grading, summarize(lnYhour) nostandard
    But I'd really like to be able to put gender wage differences (absolute value and/or t-test and/or percentage of female wage over male wage) inside the cells.

    Comment

    Working...
    X