graphics - In Stata, how can I adjust size of coefplot's headings? -


I am working with the coefplot command, which is the Plat Plating Regression Coefficient Is in.

Examples of manuals:

  sysuse auto, keep clear if rep78 & gt; = 3 reload mpg headroom i.rep ## i.foreign coefplot, xline (0) omitted basleval titles (3.rep78 = "{bf: repair record}" 0.foreign = "{bf: car type}" 3 .rep78 # 0.foreign = "{bf: interaction effect}") drop (_cons)  

This works as expected.

I am now trying to tinker with the size of labels of Y axis. I want to shorten them to accommodate a large number of those categories.

ylab (labs (vsmol))

But how can I get headings myself?

You can add labsize (vsmall) to headings ( ) within a subpoenza. Example:

  sysuse auto, keep it clear if rep78 & gt; = 3 regpg mpg headroom i.rep ## i.foreign coefplot, xline (0) skiped baselvel /// header (3.rep78 = "{Bf: repair record}" 0.foreign = "{bf: car type} "/// 3.rep78 # 0.foreign =" {bf: interaction effect} ", lab vs. (vs) / code> 

Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -