Hi everyone,
I need to create a table combining summary statistics and correlation matrix as a part of a paper submission, so it needs to look like it is properly formatted.
I've found that asdoc does this quite well, but I need to create a table that combines both summar statistics and correlation matrix. It should look like the one attached.
I tried
But what this does is that it simply appends the correlation table to the document which already has a summary table.
Clearly, I can do this manually after creating both, but I'd rather automate it if possible.
Thank you!
I need to create a table combining summary statistics and correlation matrix as a part of a paper submission, so it needs to look like it is properly formatted.
I've found that asdoc does this quite well, but I need to create a table that combines both summar statistics and correlation matrix. It should look like the one attached.
I tried
Code:
asdoc sum y1 x1 x2 x3 x4 x5, save(output) asdoc cor y1 x1 x2 x3 x4 x5, append save(output)
Clearly, I can do this manually after creating both, but I'd rather automate it if possible.
Thank you!
Comment