I am trying to manipulate the output of EllipsoidQuantile to find the area in the next line.
I can easily find the 95% confidence interval and this generates an ellipsoid, but I would like to extract the axis without copy and pasting.
data = {{-3.17, 272.35}, {.67, 271.54},..........};
elips = EllipsoidQuantile[data, 0.95]
the output is then
Ellipsoid[{{-.578,272},{2.88,0.62},{-.09,0.12},{-.12,-.099}}]
I would like to extract the second row of data(major and minor axis).

Part? And please add complete examples. – Sektor May 28 '15 at 16:01EllipsoidQuantileuses an obsolete definition of theEllipsoidfunction, as you will notice if you compare the three-argument results you get with the current two-argument definition in the documentation. Take a look at this question How to draw confidence ellipse from a covariance matrix? for a way of drawing those ellipsoids that also doesn't require you to use theMultivariateStatisticspackage. – MarcoB May 28 '15 at 16:13