查看原文
其他

【Stata18.0新功能3】新的图形风格方案

数量经济学 计量云课堂 2023-10-24

Stata 18.0包括新的图形方案

概述

Stata 18包括新的图形方案stcolor,stcolor_altstgcolorstgcolor_alt

stcolor 是 Stata 的新默认方案。它基于旧的默认方案 s2color,但进行了以下修改:

  • 图表宽 7.5 英寸,高 4.5 英寸。
  • 调色板将更新为更明亮的颜色。
  • 背景颜色为白色。
  • 图例包含一列,位于图形的右侧。
  • y 轴标签是水平的。
  • 主网格线为虚线。
  • 标记大小很小。
  • 参考线和用 xline()yline() 选项添加的线是黑色的。
  • 直方图填充颜色为 stc1,强度为 90%,轮廓颜色为 stc1,强度为 70%。

方案 stcolor_alt 基于方案 stcolor,但进行了以下修改:

  • 宽度和高度设置为 6 英寸和 4 英寸。
  • 图例包含两列,位于绘图区域下方。

一些使用方案stcolor_alt的图形命令包括 tslinetsrlinefcast graphestat acplot。如果您希望将这些命令一起使用方案 stcolor 或任何其他方案,则可以指定 scheme() 选项。

让我们看看它的工作原理

. sysuse auto, clear
(1978 automobile data)

. twoway  (scatter price mpg) (lowess price mpg), subtitle("Price vs. MPG")


. sysuse lifeexp, clear
(Life expectancy, 1998)

. scatter lexp gnppc, by(region, total)



. sysuse educ99gdp, clear
(Education and GDP)

. generate total = private + public

. graph hbar (asis) public private,       
  over(country, sort(total) descending) stack 
  title("Spending on tertiary education as % of GDP, 1999", span pos(11))
  note("Source: OECD, Education at a Glance 2002", span)
. webuse nhanes2, clear

. logistic highbp sex##agegrp##c.bmi
(output omitted)

. margins sex, at(bmi=(10(5)65))
(output omitted)

. marginsplot

Variables that uniquely identify margins: bmi sex


想要旧式图表?

如果要永久切换回旧方案,请键入

set scheme s2color, permanently

或者,如果要在一个图形命令中指定旧方案,请键入

. sysuse auto, clear
(1978 automobile data)

. twoway  (scatter price mpg) (lowess price mpg), subtitle("Price vs. MPG") scheme(s2color)

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

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