planets | R Documentation |
Data on planets outside the Solar System.
data("planets")
A data frame with 101 observations from 101 exoplanets on the following 3 variables.
Jupiter mass of the planet.
period in earth days.
the radial eccentricity of the planet.
From the properties of the exoplanets found up to now it appears that the theory of planetary development constructed for the planets of the Solar System may need to be reformulated. The exoplanets are not at all like the nine local planets that we know so well. A first step in the process of understanding the exoplanets might be to try to classify them with respect to their known properties.
M. Mayor and P. Frei (2003). New Worlds in the Cosmos: The Discovery of Exoplanets. Cambridge University Press, Cambridge, UK.
data("planets", package = "HSAUR") require("scatterplot3d") scatterplot3d(log(planets$mass), log(planets$period), log(planets$eccen), type = "h", highlight.3d = TRUE, angle = 55, scale.y = 0.7, pch = 16)