Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
R で plotmath シンボルを使用して、プロットの X 軸に間隔を追加したいと考えています3<=X<=4。私はあなたが次のようなことができることを知っています:
3<=X<=4
x=1:10 x1=3 x2=4 plot(x, xlab=substitute(a <= X *""~ X <= b, list(a=x1,b=x2)))
Xしかし、エラーが発生するため、2番目を削除できません。これは可能ですか?それとも何かトリックをする必要がありますか?
X
次のことを試してください。
plot(x, xlab=substitute(a <= ~X <= b, list(a=x1, b=x2)))