开发者

Mathematical Annotation in R

开发者 https://www.devze.com 2023-03-09 17:05 出处:网络
In R, I can create text label \"0 <= x\" on my graph by saying text(0, 0, expression(italic(0 <= x开发者_StackOverflow中文版)));

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

精彩评论

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