On Tue, Jul 21, 2009 at 18:00, Sandro Tosi<matrixh...@gmail.com> wrote:
> for example, let's say I want to plot this series
>
> s1 = 2,3,6,3,1
> s2 = 1,2,2,4,1
> s3 = 4,1,0,3,7
>
> what's the format of data to pass to hist() ? by row? by column?

Just to clarify: from the above lists of values, I'm expecting to draw
something like:

          |
  s3      | s3[1]  s3[2]  s3[3]  ...
  s2  ->  | s2[1]  s2[2]  s2[3]  ...
  s1      | s1[1]  s1[2]  s1[3]  ...
        --+---------------------------
          |

or

                |  ...    ...    ...
                | s1[3]  s2[3]  s3[3]
                | s1[2]  s2[2]  s3[2]
 s1 s2 s3   ->  | s1[1]  s2[1]  s3[1]
              --+----------------------
                |

Either are fine (once I get how to do, I'll adapt data to that),
simply I don't know how to do that :)

Cheers,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi

------------------------------------------------------------------------------
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to