Hi,
I will have a look at mplot3d sub-plots next weekend and try to fix
issues like this. I'll also add a working example.
Cheers,
Reinier
On Tue, Sep 29, 2009 at 5:05 PM, Jae-Joon Lee wrote:
> Hmm, axes3d does not seem to support it currently. I hope Reinier or
> others confirm this.
> Anyhow,
Hmm, axes3d does not seem to support it currently. I hope Reinier or
others confirm this.
Anyhow, here is a quick workaround you may try.
from matplotlib.axes import subplot_class_factory
class MyAxes3D(Axes3D):
def _button_press(self, event):
if event.inaxes == self:
Axe
Thanks,
that works like a charm.
final bonus question: How can i individually set the point of view/zoom level
for the different 3d subplots?
Currently, when i rotate/zoom (with the mouse) in one subplot, the changes
are applied on all 3d subplots.
Thanks again,
q
On Mon, Sep 28, 2009 at 11:52
Try below instead of Axes3D. Obviously, "131" is the geometry
parameter for subplot command. You don't need to add "ax" to "fig"
since Axes3D do that by itself.
from matplotlib.axes import subplot_class_factory
Subplot3D = subplot_class_factory(Axes3D)
ax = Subplot3D(fig, 131)
This will show yo
I'm not sure its possible right now to do subplots with 3D.
As for the title, I cannot either put titles on any 3D graphs...
2009/9/28
> Greetings,
>
> I would like to plot to make a figure with 3 subplots
> of the form (221) to (223):
> - each subplot should show a bar3d plot of a matrix
>
Greetings,
I would like to plot to make a figure with 3 subplots
of the form (221) to (223):
- each subplot should show a bar3d plot of a matrix
- each subplot should have it's own title
The problems:
a) I don't see (nor did i find something) how i can
use subplots combined with bar3d (f