Hospital Sírio-Libanês的Rafael Leite Pacheco、Rachel Riera和Ana Luiza Cabrera Martimbianco开发了Stata社区命令direct_flow,用来快速绘制系统评价、研究综述和其他研究类型的流程图。 *net install 安装 net install direct_flow, from(https://rlpacheco.github.io/direct_flow/) replace *...
阅读全文
美国密西西比大学医学中心(University of Mississippi Medical Center)的Isaac M. E. Dodd开发了Stata社区命令flowchart,用以绘制出版级别的受试者分配流程图。 安装Stata社区命令flowchart的Stata命令如下: * net install 安装 net install flowchart, from("https://raw.github.com/isaacdodd...
阅读全文
Stata公司的Vince Wiggins开发了一款Stata社区命令grc1leg用于合并多个图形,与graph combine类似,但只保留一个图例。 grc1leg就是graphs combine 1 legend(Combine multiple graphs into one with a single common legend)的缩写。 安装Stata社区命令grc1leg的Stata命令如下: net install grc1...
阅读全文
安装的Stata命令如下: net describe gr0034, from(http://www.stata-journal.com/software/sj8-2) net install gr0034.pkg, replace net get gr0034.pkg, replace help labmask help seqvar
阅读全文
下载字体Silhous Font,信息如下: 浏览地址https://www.fontspace.com/silhous-font-f3542 下载地址https://www.fontspace.com/get/family/63qp 安装字体Silhous Font,方法如下: 压缩包解压后,将MixedBag2-R013.ttf复制到 Windows系统的字体目录下(C:\Windows\Fonts)即可。 绘制上图的Stata代...
阅读全文
信息图(Infographic=Information+Graphic)是信息的视觉表示,它使用图像模式来帮助读者了解信息之间的相互关系,通过鼓励视觉比较来工作。 下载字体Mixed Bag 2 Font,信息如下: 浏览地址https://www.fontspace.com/mixed-bag-2-font-f5931 下载地址https://www.fontspace.com/get/family/zqo1 ...
阅读全文
Stata绘制上图的代码如下: /******************************************************************************* Figure: Simple event study graph ******************************************************************************** PART 1: Load data **************************************...
阅读全文
绘制上图的Stata代码如下: * Figure: Comparison of marginal effects from linear and logistic specifications global graph_opts title(, justification(left) color(black) span pos(11)) graphregion(color(white)) ylab(,angle(0) nogrid) xtit(,placement(left) justification(left)) yscal...
阅读全文
绘制上图的Stata代码如下: /******************************************************************************* FIGURE: Marginal effects by heterogeneity gorups ********************************************************************************/ sysuse auto, clear /*------------------...
阅读全文
英国杜伦大学(Durham University)的Nicholas J. Cox开发了一款用来绘制棘状图的Stata社区命令spineplot,安装的Stata命令如下: ssc install spineplot, replace help spineplot 绘制上图的Stata代码如下: sysuse auto, clear spineplot foreign rep78, scheme(s1color) percent 参考文献:Speak...
阅读全文