在 Stata 中,我可以在给定坐标处将文本添加到绘图中,例如:
clear
set obs 10
gen x = rnormal()
gen y = rnormal()
twoway scatter y x, text(0.8 0.8 "Some text")
结果是坐标 (0.8, 0.8) 处的“一些文本”:
我想用 Gadfly 在 Julia 中添加一个类似的注释。我发现Guide.annotation
它可以添加图形图层,但我不知道如何将其应用于文本而不是形状。该文档在顶部提到:
用任意Compose图形覆盖绘图。
但Compose
链接显示的是中文网站。
如何使用 Gadfly 添加文本标签(或标题或注释)?