一款简约的Stata图形模板:Tufte

Tufte是英国伦敦政治经济学院(The London School of Economics and Political Science)的Ulrich Atz原创的一款Stata图形模板。该模板基于Stata s2mono构建,受爱德华·塔夫特(Edward Tufte)的启发,旨在打造白色背景基础上灰色背景线和灰色坐标轴的简约风格。

安装Stata图形模板Tufte的Stata代码如下:


ssc install scheme_tufte, replace
help scheme_tufte

查看目前可用的Stata图形模板,Stata代码如下:


graph query, schemes

可以看出,tufte出现在Available schemes列表中了,还附有帮助手册。

选择需要预览的Stata图形模板,如Stata自带的s2color和s2mono及刚才安装的tufte,用循环挨个绘图,最后合并,Stata代码如下:


sysuse uslifeexp, clear
local schemes s2color s2mono tufte
foreach scheme of local schemes {
    line le_female year|| line le_male year, legend(row(1)) title(`scheme') scheme(`scheme') saving(`scheme',replace)
    local plots `plots' `scheme'.gph
}
graph combine `plots'

完,本文内容交流请移步: