1 Star 1 Fork 4

连享会/wid-stata-tool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
wid_example1.ado 631 Bytes
一键复制 编辑 原始数据 按行查看 历史
Thomas Blanchet 提交于 2017-06-23 18:54 . Corrected typo
*! wid_example1 v1.0.2 Thomas Blanchet 20jun2017
// Plot the long run evolution wealth inequality in France
program wid_example1
version 13
quietly {
preserve
wid, indicators(shweal) areas(FR) perc(p90p100 p99p100) ages(992) pop(j) clear
// Reshape and plot
reshape wide value, i(year) j(percentile) string
label variable valuep90p100 "Top 10% share"
label variable valuep99p100 "Top 1% share"
graph twoway line value* year, title("Wealth inequality in France") ///
ylabel(0.2 "20%" 0.4 "40%" 0.6 "60%" 0.8 "80%") ///
subtitle("equal-split adults") ///
note("Source: WID.world")
restore
}
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/arlionn/wid-stata-tool.git
git@gitee.com:arlionn/wid-stata-tool.git
arlionn
wid-stata-tool
wid-stata-tool
master

搜索帮助