英国爱丁堡大学 (University of Edinburgh) 的François Briatte开发了Stata图形模板Burd,该模板是基于Svend Juul的lean scheme (Juul 2003) 和Cynthia Brewer的 “RdBu” ColorBrewer scheme (Brewer 2002)构建的。
安装Stata图形模板Burd的Stata代码如下:
ssc install scheme-burd
help scheme_burd
查看目前可用的Stata图形模板,Stata代码如下:
graph query, schemes
选择需要预览的Stata图形模板,如Stata自带的s2color和s2mono及刚才安装的burd,用循环挨个绘图,最后合并,Stata代码如下:
sysuse uslifeexp, clear
local schemes s2color s2mono burd
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'
完,本文内容交流请移步: