查看原文
其他

Stata数据可视化: 十幅精美图形的绘制

Stata连享会 Stata连享会 2020-02-10

编译:张晓明 (中国人民大学);连玉君(中山大学)

Stata 连享会: 知乎 | 简书 | 码云

下载 dofile: 连享会-十幅经典图形绘制.do (可右击另存,亦可在线查看)  

python 爬虫与文本分析专题-现场班

特别说明

文中包含的链接在微信中无法生效。请点击本文底部左下角的【阅读原文】,转入本文【简书版】

相关推文: 连享会-数据可视化系列推文


Source: https://www.surveydesign.com.au/tipsgraphs.html
该网站提供了几十种 Stata 图形的绘制方法 (dofile)


https://www.surveydesign.com.au/tipsgraphs.html 提供了几十种 Stata 图形的绘制方法


1. 散点图:附加密度函数图和拟合线(Scatter Plot with Regression Results)

附加密度函数和拟合曲线的散点图能够更好地看清样本的概率分布,同时能够表示出参数估计的置信区间。

F1_Scatter_distribution
  1. *-文件夹设定

  2. cd D:\

  3. mkdir myfigs

  4. cd D:\myfigs // 后文输出的图形自从存储于此处


  5. *-----------

  6. *- F1 散点图:附加密度函数和拟合曲线图绘制

  7. *-----------


  8. sysuse auto, clear

  9. version 9.2 //绘制这幅图的时候,需要加这条命令,后续版本的stata绘图命令的语法有所改变

  10. keep if foreign

  11. sort weight


  12. gen weight2 = weight^2

  13. regress mpg weight weight2

  14. predict fit

  15. predict se , stdp


  16. #delimit ;

  17. twoway

  18. scatter mpg weight , pstyle(p3) ms(o) ||

  19. fn weight[3] - 1000 * normden(x, `=fit[3]' , `=se[3]') ,

  20. range(`=fit[3] -5' `=fit[3] +5') horiz pstyle(p1) ||

  21. fn `=fit[3]' , range(`=weight[3]' `=weight[3]-1000*normden(0, se[3])')

  22. pstyle(p1) ||

  23. fn weight[17] - 1000 * normden(x, `=fit[17]', `=se[17]') ,

  24. range(`=fit[17]-5' `=fit[17]+5') horiz pstyle(p1) ||

  25. fn `=fit[17]', range(`=weight[17]' `=weight[17]-1000*normden(0, se[17])')

  26. pstyle(p1) ||

  27. fn weight[21] - 1000 * normden(x, `=fit[21]' , `=se[21]') ,

  28. range(`=fit[21] -7' `=fit[21] +7') horiz pstyle(p1) ||

  29. fn `=fit[21]', range(`=weight[21]' `=weight[21]-1000*normden(0, se[21])')

  30. pstyle(p1) ||

  31. line fit weight, clwidth(*2) legend(off)

  32. ytitle(Miles per gallon) xtitle(Weight)

  33. title("Scatter with Regression Line and Confidence Interval Densities"

  34. , size(*0.8) margin(t=0 b=1.5) span)

  35. ;

  36. #delimit cr


  37. *-保存图片

  38. graph export "F1_Scatter_distribution.png", ///

  39. replace width(506) height(376)


2. 三变量比例图 (triplot)

三变量比例图可以显示出三个变量之间的复杂的组合关系,三个变量比例的取值范围为1~100。

F2_triplot
  1. *----------------

  2. *-F2 三变量比例图

  3. *----------------


  4. * Plots 3 variables (proportions or percentages)

  5. * the total of each to equal either 1 or 100


  6. ssc install triplot, replace // 下载命令


  7. clear

  8. input a1 a2 a3 str10 name

  9. 10 10 80 John

  10. 80 10 10 Fred

  11. 25 25 50 Jane

  12. 90 5 5 Helen

  13. 0 0 100 Ed

  14. 50 25 25 Kate

  15. 20 60 20 Michael

  16. 25 25 50 Darren

  17. 5 90 5 Samar

  18. end


  19. list


  20. triplot a1 a2 a3, ///

  21. mlabel(name) mlabcolor(black) mcolor(blue) ///

  22. mlabsize(*0.9) max(100) ///

  23. title("Opinion a1 a2 a3")


  24. //保存图片

  25. graph export "F2_triplot.png", ///

  26. replace width(506) height(376)


3. 点图:图示政策效果(Stripplot)

如果将本例中的纵轴分组变量换成年份,则这幅图可以在倍分法回归分析之前,图示政策效果。

F3_triplot - 图示双重差分\倍分法政策效果
  1. *--------

  2. *-F3 点图 图示政策效果

  3. *--------


  4. ssc install stripplot, replace // 下载并更新命令

  5. help stripplot // 查看帮助文件


  6. sysuse bplong, clear

  7. egen group = group(age sex), label


  8. #d ;

  9. stripplot bp*, bar over(when)

  10. by(group, compact col(1) note(""))

  11. yscale(reverse)

  12. subtitle(, pos(9) ring(1) nobexpand

  13. bcolor(none) placement(e))

  14. ytitle("")

  15. xtitle("Blood pressure (mm Hg)") ;

  16. #d cr


  17. //保存图片

  18. graph export "F3_triplot.png", ///

  19. replace width(531) height(394)


4. 雷达图\蜘蛛网图 (Radar Plot, Spider plots)

雷达图在市场营销和管理学中应用较为广泛,主要用于呈现某个对象的各方面特征的均衡度,正所谓 “尺有所短寸有所长”。

F4_radar_plot-雷达图\蜘蛛网图
  1. *-------------------

  2. *-F4 雷达图\蜘蛛网图

  3. *-------------------


  4. ssc install radar, replace //下载外部命令

  5. help radar //查看帮助文件


  6. sysuse auto, clear

  7. sort price


  8. #d ;

  9. radar make turn mpg trunk in 1/20,

  10. aspect(1)

  11. title(Nice Radar graph, size(*0.6))

  12. lc(red blue green)

  13. lw(*1 *2 *4) rlabel(0 12 14 18 50) labsize(*0.7)

  14. legend(label(1 "mpg-油效(英里/加仑)")

  15. label(2 "turn-转弯半径(英尺)")

  16. label(3 "trunk-后备箱容积(立方英尺)")

  17. col(1) size(*.8)) ;

  18. #d cr


  19. //保存图片

  20. graph export "F4_radar_plot.png", ///

  21. replace width(431) height(394)


5. 快捷诊断图(Sixplot)

快捷诊断图针对一个变量提供了六幅分析性的、描述性的图片

image.png
  1. *--------------

  2. *-F5 快捷诊断图

  3. *--------------


  4. *-Goal: Displays six diagnostic and descriptive graphs for a single variable


  5. ssc install sixplot //下载命令


  6. sysuse uslifeexp.dta

  7. sixplot le_male


  8. //保存图片

  9. graph export "F5_sixplot.png", ///

  10. replace width(431) height(394)


6. 箱形图 (Box Plot)

箱形图又称为盒须图、盒式图或箱线图,是一种用作显示一组数据分散情况资料的统计图。因形状如箱子而得名。在各种领域也经常被使用,常见于品质管理。它主要用于反映原始数据分布的特征,还可以进行多组数据分布特征的比较。

image.png
  1. *-----------

  2. *-F6 箱形图

  3. *-----------


  4. sysuse nlsw88, clear


  5. clonevar wagelog10 = wage

  6. replace wagelog10 = log10(wagelog10)


  7. mylabels 0(10)40 , myscale(log10(@)) local(labels)


  8. #d ;

  9. graph hbox wagelog10,

  10. over(ind, sort(1)) nooutside

  11. ytitle("") ylabel(`labels')

  12. title("Hourly wage, 1988, woman aged 34-46", span)

  13. subtitle(" ")

  14. note("Source:1988 data from NLS, U.S. Dept. of Labor, "

  15. "Bureau of Labor Statistics", span) ;

  16. #d cr


  17. //保存图片

  18. graph export "F6_box_plot.png", ///

  19. replace width(431) height(394)


7. 小提琴图(Violin Plot)

小提琴图 (Violin Plot) 用于显示数据分布及其概率密度。这种图表结合了箱形图和密度图的特征,主要用来显示数据的分布形状。中间的黑
色粗条表示四分位数范围,从其延伸的幼细黑线代表 95% 置信区间,而白点则为中位数。

小提琴图
  1. *------------

  2. *-F7 小提琴图

  3. *------------


  4. ssc install vioplot // 下载外部命令

  5. help vioplot // 查看帮助文件


  6. sysuse auto, clear


  7. vioplot mpg, over(rep78) horizontal name(myplot) ///

  8. title("Violin Plot of Mileage") ///

  9. subtitle("By repair record") ///

  10. ytitle(Repair Record) ///

  11. ylab(, angle(horiz)) ///

  12. scheme(s2mono)


  13. //保存图片

  14. graph export "F7Violin_plot.png", ///

  15. replace width(431) height(394)


8. 热图绘制(Heat Map)

热图通过平面二维坐标加上不同区域颜色的变化表达了三维信息,热图中横坐标与纵坐标给出了数据的特征,**热图的颜色表示了该数据在整体中的概率密度分布。 **

热图
  1. *------------

  2. *-F8 热图绘制

  3. *------------


  4. ssc install spgrid, replace


  5. ssc install spkde, replace


  6. ssc install mylabels, replace //下载外部命令


  7. sysuse "auto.dta", clear

  8. set more off


  9. summarize price mpg

  10. clonevar x = mpg

  11. clonevar y = price

  12. replace x = (x-0)/(50-0)

  13. replace y = (y-0)/(20000-0)


  14. mylabels 0(10)50, myscale((@-0)/(50-0)) local(XLAB)

  15. mylabels 0(5000)20000, myscale((@-0)/(20000-0)) local(YLAB)

  16. keep x y

  17. save "xy.dta", replace


  18. * 1. Generate a 100x100 grid


  19. spgrid, shape(hexagonal) xdim(100) ///

  20. xrange(0 1) yrange(0 1) ///

  21. dots replace ///

  22. cells("2D-GridCells.dta") ///

  23. points("2D-GridPoints.dta")


  24. * 2. Estimate the bivariate probability density function


  25. spkde using "2D-GridPoints.dta", ///

  26. xcoord(x) ycoord(y) ///

  27. bandwidth(fbw) fbw(0.1) dots ///

  28. saving("2D-Kde.dta", replace)


  29. use "2D-Kde.dta", clear


  30. merge 1:1 _n using xy.dta


  31. twoway (contour p spgrid_ycoord spgrid_xcoord if p!=0 , ///

  32. levels(15)) ///

  33. (scatter y x, mcolor(black) msize(small) ) ///

  34. ,xlab(`XLAB', nogrid) xtitle("Mileage (mpg)") ///

  35. ylab(`YLAB', nogrid) ///

  36. ytitle("Price $US") plotregion(color(blue))


  37. graph export "F8Heat_Map.png", replace width(431) height(394)


9. 棘状图绘制(Spine Plot)

棘状图的原理和条件密度图非常相似,都展示了给定某个自变量的情况下因变量的概率分布,但是棘状图首先对连续型的自变量进行了离散化处理,然后再离散区间内计算因变量的条件分布。除此之外,棘状图还兼顾了自变量的分布,在横轴方向上以不同宽度的矩形表示自变量的分布密度。

棘状图
  1. *--------------

  2. *-F9 棘状图绘制

  3. *---------------


  4. sysuse auto, clear


  5. replace rep78=0 if missing(rep78)


  6. bysort foreign rep78 : gen N = _N

  7. bysort foreign : gen Na1 = (N/_N)*100


  8. by foreign : gen N1 = string(Na1,"%5.2f") +"%"


  9. label define kk 0 "missing",

  10. label values rep78 kk


  11. spineplot rep78 foreign, ///

  12. bar1(bcolor(gs14)) ///

  13. percent missing ///

  14. bar2(bcolor(gs11)) ///

  15. bar3(bcolor(gs8)) ///

  16. bar4(bcolor(gs5)) ///

  17. bar5(bcolor(gs2)) ///

  18. bar6(bcolor(red)) text(N1)


  19. graph export "F9Spine_Plot.png", ///

  20. replace width(431) height(394)


10. 中心条形图(Centred Bar Plot)

中心条形图经常被用在社会学统计分析中,中心的条块经常用来显示不同层次或年龄群体在横坐标对应的分类中的频率。

中心条形图
  1. *----------------

  2. *-F10 中心条形图

  3. *----------------


  4. ssc install cbarplot, replace


  5. clear

  6. input levels freqcores freqblanks freqtools

  7. 25 21 32 70

  8. 24 36 52 115

  9. 23 126 650 549

  10. 22 159 2342 1633

  11. 21 75 487 511

  12. 20 176 1090 912

  13. 19 132 713 578

  14. 18 46 374 266

  15. 17 550 6182 1541

  16. 16 76 846 349

  17. 15 17 182 51

  18. 14 4 51 14

  19. 13 29 228 130

  20. 12 135 2227 729

  21. end


  22. reshape long freq, i(levels) j(kind) string


  23. *-绘图

  24. cbarplot levels kind [fw=freq], percent(levels) mlabsize(*.6)


  25. *-保存图片

  26. graph export "F10Centred_Bar_Plot.png", ///

  27. replace width(431) height(394)

下载 dofile: 连享会-十幅经典图形绘制.do (可右击另存,亦可在线查看)

关于我们

  • Stata 连享会(公众号:StataChina)】由中山大学连玉君老师团队创办,旨在定期与大家分享 Stata 应用的各种经验和技巧。

  • 公众号推文同步发布于 CSDN-Stata连享会 、简书-Stata连享会 和 知乎-连玉君Stata专栏。可以在上述网站中搜索关键词StataStata连享会后关注我们。

  • 点击推文底部【阅读原文】可以查看推文中的链接并下载相关资料。

  • Stata连享会 精彩推文1  || 精彩推文2

联系我们

  • 欢迎赐稿: 欢迎将您的文章或笔记投稿至Stata连享会(公众号: StataChina),我们会保留您的署名;录用稿件达五篇以上,即可免费获得 Stata 现场培训 (初级或高级选其一) 资格。

  • 意见和资料: 欢迎您的宝贵意见,您也可以来信索取推文中提及的程序和数据。

  • 招募英才: 欢迎加入我们的团队,一起学习 Stata。合作编辑或撰写稿件五篇以上,即可免费获得 Stata 现场培训 (初级或高级选其一) 资格。

  • 联系邮件: StataChina@163.com

往期精彩推文


欢迎加入Stata连享会(公众号: StataChina)

一起学空间计量……

    您可能也对以下帖子感兴趣

    文章有问题?点此查看未经处理的缓存