Closed BelhalK closed 8 years ago
How did you construct the "test" table?
By the way, the two complaints are related: the period_minutes variable here is seen as categorical rather than numeric, so each category is naturally given its own equal space.
And so is perigee_km, which is why you get a heatmap rather than a scatter: plotting categorical against categorical makes sense only as a heatmap.
I suspect you were trying to do something like this?
Looking at it a bit farther, pairplot may not know the types of the variables. If you're keeping the same names as in the generator (and it looks like you are for Satellites), then you can pass generator_name=satellites_cc
or similar, and probably get the right statistical types from there.
Yep that worked. Thanks!
My query
(for info,
bu.query(bdb,'''select Period_minutes, Perigee_km from test WHERE Anticipated_Lifetime=15;''')
has 21 entries)here's the plot
First, the scaling as highlighted is weird (jumping from 114 to 994): I understand that there are no values in between but my point is to show this gap Second, the scatter plot is a weird heatmap: i can not think of an explanation.
NB: (Period_minutes normal, Perigee_km normal) are the types