asdocx: Export from Stata to Word, Excel, LaTeX & HTML Forums asdocx Forum Decimals and the base level category in factor variables

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • Ozer Erdem
    Participant
    Post count: 14

    Hi,
    Would it be possible to specifiy decimal lenght for t values and coefficients seperately?
    dec(3) rep(t)
    With this option, I get everthing with 3 decimals. It is ok for t values but not for coefficients.

    Second question,

    Even though I use:
    nest nofvlabel

    I still get empty rows with 0bn.
    0bn.High_A

    Is it possible to remove numbering which comes with interactions?
    1.High_A

    For example, if I add c.A##i.High_A, I get in the word document:
    0bn.High_A#c.A

    1.High_A#c.A

    Thank you.

    Dr. Attaullah Shah
    Keymaster
    Post count: 106

    Hello Ozer Erdem
    On your request, I have added option dect() to control the decimal points of standard errors, t-values, or p-value in the nested regressions. I have also fixed the issue with the nofvlabel option. Here is one example where I used the default three decimal places for regression coefficients and two decimal points for standard errors.

    sysuse auto, clear
    asdocx reg price mpg i.foreign##c.rep78, replace nest 
    asdocx reg price mpg rep78 headroom, nest
    asdocx reg price mpg rep78 headroom weight , nest 
    asdocx reg price mpg rep78 weight , nest dect(2) nofvlabel

    asdocx nested decimal points for t-values p-values se

    You may like to note that asdocx considers all formatting options of the last command used. You may add these options in each line of code, that does not do any harm though.

    Ozer Erdem
    Participant
    Post count: 14

    Amazing 🙂
    Thank you.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.