Dear all,
I am trying to generate a table which displays means and median of certain variables by category in the following way:
Where targetadvisor takes three levels for the quality level of each advisor.
I want to include p-values for a t-test of each value of the mean and a Wilcoxon sign rank test on the medians. Is there an easy way to construct a table containing these values? The outputs would look something like this:
https://drive.google.com/file/d/1Izu...ew?usp=sharing
I am sorry for the google link, for some reason the file would not upload.
Thanks!
Stijn
I am trying to generate a table which displays means and median of certain variables by category in the following way:
Code:
bys targetadvisor: outreg2 using TargetSummary, replace sum(log) excel dec(3) eqkeep(N mean p50)
I want to include p-values for a t-test of each value of the mean and a Wilcoxon sign rank test on the medians. Is there an easy way to construct a table containing these values? The outputs would look something like this:
https://drive.google.com/file/d/1Izu...ew?usp=sharing
I am sorry for the google link, for some reason the file would not upload.
Thanks!
Stijn
Comment