asdocx: Export from Stata to Word, Excel, LaTeX & HTML Forums asdocx Forum asdocx for exporting results of ttest | option rowappend

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • Jaemin Lee
    Participant
    Post count: 17

    Dear Professor Shah:

    It seems that rowappend for t-test using by() option doesn’t seem to work. It worked well for asdoc, but not asdocx.
    Would you know what is causing this problem?

    Sincerely

    Dr. Attaullah Shah
    Keymaster
    Post count: 106

    Hello Lee,
    Can you please provide the code you are using. From asdocx help file, I have tried the following code and it works fine.

    sysuse auto, clear
    asdocx ttest rep78==0, replace title(T-test results : mean == 0)
    asdocx ttest price==0, rowappend
    asdocx ttest mpg==0, rowappend
    asdocx ttest turn==0, rowappend
    asdocx ttest weight==0, rowappend
    asdocx ttest length==0, rowappend

    using rowappend with by() option

    asdocx ttest mpg, by(foreign) replace
    asdocx ttest mpg, by(foreign) rowappend
    asdocx ttest price , by(foreign) rowappend
    
      0 |1                          2       3        4        5        6        7        8        9 
    ----+-------------------------------------------------------------------------------------------
      1 |                       obs1    obs2    Mean1    Mean2      dif   St_Err  t_value   p_value 
    ----+-------------------------------------------------------------------------------------------
      2 |mpg by foreign: 0 1       52      22   19.827   24.773   -4.946    1.362    -3.65    0.001 
      3 |mpg by foreign: 0 1       52      22   19.827   24.773   -4.946    1.362    -3.65    0.001 
      4 |price by foreign: ~1      52      22 6072.423 6384.682 -312.259  754.449     -0.4     0.68 
    ------------------------------------------------------------------------------------------------
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.