丹麦奥胡斯大学(Aarhus University)的 Svend Juul开发了一款适合很多杂志要求的黑白风格的Stata图形模板Lean,包括lean1和lean2两个模板,两个模板均为白色背景,图例在右侧,y轴标签水平显示;不同之处在于lean1有边框但没有网格线,而lean2没有边框而有网格线。
安装Stata图形模板Lean的Stata代码如下:
net install gr0002_3.pkg
net get gr0002_3.pkg
查看目前可用的Stata图形模板,Stata代码如下:
graph query, schemes
选择需要预览的Stata图形模板,如Stata自带的s2color和s2mono及刚才安装的lean1和lean2,用循环挨个绘图,最后合并,Stata代码如下:
sysuse uslifeexp, clear
local schemes s2color s2mono lean1 lean2
foreach scheme of local schemes {
line le_female year|| line le_male year, legend(row(1) ring(1) position(6)) title(`scheme') scheme(`scheme') saving(`scheme',replace)
local plots `plots' `scheme'.gph
}
graph combine `plots'
参考文献:Lean mainstream schemes for Stata 8 graphics
https://journals.sagepub.com/doi/pdf/10.1177/1536867X0300300306
完,本文内容交流请移步: