在ggplot2中,在使用stat_ellipse绘制椭圆图之后,有没有办法计算这个椭圆的面积?这是代码和情节:
library(ggplot2)
set.seed(1234)
x <- rnorm (1:1000)
y <- rnorm (1:1000)
data <- cbind(x, y)
data <- as.data.frame(data)
ggplot (data, aes (x = x, y = y))+
geom_point()+
stat_ellipse()
Run Code Online (Sandbox Code Playgroud)
您可以通过查找椭圆的半长轴和半短轴来计算椭圆的面积(如本答复所示):
# Plot object
p = ggplot (data, aes (x = x, y = y))+
geom_point()+
stat_ellipse(segments=201) # Default is 51. We use a finer grid for more accurate area.
# Get ellipse coordinates from plot
pb = ggplot_build(p)
el = pb$data[[2]][c("x","y")]
# Center of ellipse
ctr = MASS::cov.trob(el)$center # Per @Roland's comment
# Calculate distance to center from each point on the ellipse
dist2center <- sqrt(rowSums((t(t(el)-ctr))^2))
# Calculate area of ellipse from semi-major and semi-minor axes.
# These are, respectively, the largest and smallest values of dist2center.
pi*min(dist2center)*max(dist2center)
[1] 13.82067
Run Code Online (Sandbox Code Playgroud)