我心里有人了。
哈哈,看到上面这句话是不是莫名其妙,没事的,就是脑子一直在想这句话,随便写出来的。
今天了解了一下SAS画图,有一个我觉得挺重要的功能就是如何给你的图片添加标签或者注释,比如下图红框中的部分:
SAS提供一个功能就是SG Annotation Data Sets。
这个创建数据集的方法与创建任何SAS数据集的方法相同。主要的区别是,SG注释数据集使用保留关键字作为变量名,每个观察值表示绘制注释元素的命令。
是不是有点抽象,没关系,举个例子就知道了,要创建上面那张图的注释有点麻烦,我拿SAS官网的例子来说明:
我们先看最终输出
红框中就是我们添加的注释,而这就是通过SG Annotation Data Sets达到要求的。
接着创建SG Annotation Data Sets,我们给这个数据集取名叫"line"。
注意,这个function变量是一定要添加的,可以说它是爸爸!那么后面的变量可以说就是对这个function变量的修饰,比如说textcolor(文本颜色)设置成蓝色,linecolor也设置成蓝色。
注意到function="line",有两对X,Y(因为两点确定一条直线,X,Y的值就相当于在单元格【高中是叫曲象吗?我忘了】的坐标)
同时注意到这个"drawspace",“DrawSpace”是这两个的组合,比如“GraphPercent”或“DataValue”等等。
要理解drawspace,首先得理解一张图有四个区域。也就是data space;wall space;layout space;graph space。
我们看到line数据集的drawspace的值是"DataValue",也就是说我们的注释(不管是function="TEXT"还是function="line")都得在data space这区域里面,你们上去看最终输出是不是。
下面是对drawspace的英文解释:
The origin for each is at the lower left corner of the context. The units are Percent, Pixel, and Value. The “DrawSpace” is a combination of these two, such as “GraphPercent” or “DataValue” and so on.
The units of “Value” can only be used with context of “Data”. Both X and Y can have different DrawSpace, and items can be referenced outside the DrawSpace and still be drawn. For example, X DrawSpace can be set to WallPercent, and the x value can be -10, which means 10% to the left of the left edge of the wall. The default DrawSpace is “GraphPercent”.
如果拿QTC那张图来解释drawspace,我们先看那张图对应的SG Annotation Data Sets:
可以看到不一定变量名都要叫drawspace,(但是function,label好像必须要原滋原味),看到X1space和Y1space的3个不同对取值,再结合上面的那张灰白图,再结合那句话:The “DrawSpace” is a combination of these two, such as “GraphPercent” or “DataValue” and so on.不就是下面绿框交叉部分吗,也就是规定在哪里输出
上面这张图有点凌乱,看文章一开始说的那些是注释,不知道你们理解了drawspace没?自己去尝试一下,把区域换一下,说不定就懂了。
回到SAS官网的例子,我们最后把SG Annotation Data Sets输出到我们画的图中,是sganno选项起作用,画的是散点图,选取的变量是weight和height.
最后,function的取值有这些
啊啊啊啊,困死了,赶紧关机睡觉!!!!!打开手机一看,发现手机已经断网了,因为一般这时候,手机都知道我已经睡觉了。
网友评论