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で半径の異なる複数の円を描きたいと思います。
「plotrix」とdraw.circleでこれを行いました:
draw.circle (0,0,1) draw.circle (0,0,1.5) draw.circle (0,0,2) ...
それを行うためのより速くてスマートな方法を知っていますか?
draw.circle入力のベクトルを受け入れるように見えるので、便利な関数を使用して一連の入力を作成し、それを関数に渡します。
draw.circle
plot(0,0,type = "n", xlim = c(-10,10), ylim = c(-10,10)) draw.circle (0,0,seq(0,4,.5))