MultipleListPlot - does not work
- To: mathgroup at smc.vnet.net
- Subject: [mg78912] MultipleListPlot - does not work
- From: amigupta at gmail.com
- Date: Thu, 12 Jul 2007 05:26:52 -0400 (EDT)
Hi !
I am new to Mathematica and trying to use MultipleListPlot function to
plot two lists. But for some reason it does not seem to work. What I
did is (my comments in lines starting with //):
----------------------------------------------------------------------------------------------------------------------------------------------------
//loading the package
<< Graphics`MultipleListPlot`
//defining the lists
list1 = {1, 2, 3};
list2 = {4, 5, 6};
MultipleListPlot[list1, list2]
//mathematica output
MultipleListPlot[{1, 2, 3}, {4, 5, 6}]
----------------------------------------------------------------------------------------------------------------------------------------------------
>From my two-days experience with Mathematica, it seems that
Mathematica couldn't find the function MultipleListPlot and hence, it
is outputting the expended list only. I am using Mathematics 5.2 . Any
suggestions about what I am doing wrong ?