开发者

Mathematical Annotation in R

In R, I can create text label "0 <= x" on my graph by saying

text(0, 0, expression(italic(0 <= x开发者_StackOverflow中文版)));

Now, how can I create the label "0 <= x <= 1"?


I'm not sure if this is a formal way, but try this:

plot(0,0,col=0)
text(0, 0, expression(italic(0 <= {x <= 1})))
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜