标签: r plot geometry
我想在R散点图中使用半圆而不是金字塔图案。这是我目前生成金字塔的代码:
startx <- 101 endx <- 200 x = seq(from=startx, to=endx, by=1) inx = length(x) y1 <- seq(from=1, to=inx, by=2) y2 <- sort(y1, decreasing = TRUE) y = c(y1, y2) plot(x,y)
有些想法改变点分布代替半圆吗?
答案 0 :(得分:1)
这应该让你去!
startx <- -50 endx <- 50 x = seq(from=startx, to=endx, by=0.1) y <- sqrt(50^2-x^2) y <- y * 2 x <- x + 150 plot(x,y)