Stata如何绘制简洁风格的线图?

绘制上图的Stata代码如下: * FIGURE: Line graph with uncluttered scheme * Load built-in data sysuse uslifeexp * Change scheme: scheme needs to be manually installed. Instruction on how * to this can be found in https://gray.kimbrough.info/uncluttered-stata-graphs/ set scheme un...

Stata如何绘制自定义风格的线图?

绘制上图的Stata代码如下: * FIGURE: Line graph with plottig scheme * Install user-written graph scheme ssc install blindschemes, replace * Select graph scheme (similar to R's ggplot2) set scheme plottig * Load built-in data sysuse sp500, clear * Create graph: show time series ...

Stata如何绘制带可信区间的线图?

绘制上图的Stata代码如下: *Figure: Line plots witthed line with confidence interval * Load data set use "http://ds.epiman.cn/uploads/2022/06/line-fit-text.dta", clear * Treament effect reg y_var x_var post x_var_post control * Save coefficients for graph local beta_pre = round...