problems with 3d plotting

How to get the following through? Thanks

import matplotlib.axes3d as p3

Traceback (most recent call last):
  File "<pyshell#19>", line 1, in -toplevel-
    import matplotlib.axes3d as p3
  File "C:\Python24\lib\site-packages\matplotlib\axes3d.py", line 26, in
-toplevel-
    import art3d
  File "C:\Python24\lib\site-packages\matplotlib\art3d.py", line 17, in
-toplevel-
    import proj3d
  File "C:\Python24\lib\site-packages\matplotlib\proj3d.py", line 21, in
-toplevel-
    cross = nx.cross
AttributeError: 'module' object has no attribute 'cross'

zhangh1@...1278... wrote:

How to get the following through? Thanks

import matplotlib.axes3d as p3

Traceback (most recent call last):
  File "<pyshell#19>", line 1, in -toplevel-
    import matplotlib.axes3d as p3
  File "C:\Python24\lib\site-packages\matplotlib\axes3d.py", line 26, in
-toplevel-
    import art3d
  File "C:\Python24\lib\site-packages\matplotlib\art3d.py", line 17, in
-toplevel-
    import proj3d
  File "C:\Python24\lib\site-packages\matplotlib\proj3d.py", line 21, in
-toplevel-
    cross = nx.cross
AttributeError: 'module' object has no attribute 'cross'

I don't see that line in the current version, so it looks like you need to update your matplotlib installation.

Eric

Is there any easy fucntion to do that? Thanks

You mean like x.transpose() or x.T?

···

On Thu, Oct 05, 2006 at 03:50:42PM -0400, zhangh1@...1278... wrote:

Is there any easy fucntion to do that? Thanks

Hi, all:
I added a table to my figure using 'table' function. But since this table
is very long, the user can only see part of it. Is there any easy way to
add a scroll bar to the chart so that the user can scroll it down and see
it?
Thanks