How do I specify options to MultipleListPlot without causing errors?
 In some examples of MultipleListPlot, adding options generates errors. In[1]:= |  |
In[2]:= |  |
 Out[2]= |
 |
In[3]:= |  |



Out[3]= |
 |
This is due to a typographical error in . If you want to edit the file, use a plain text editor to go to line 410 of and change the following command. MultipleListPlot[{data__List?(Length[#] > 3 &)}, opts___?optionQ] :=
The new command should look as follows. MultipleListPlot[{data__List?(Length[#] > 3 &)}, opts___?OptionQ] :=
If you do not feel comfortable in editing files, a newer version of this file is available from the following URL. http://support.wolfram.com/archive/mathematica/files/MultipleListPlot.m This new file should replace the following old file. Download this FAQ as a Mathematica 5.2 Notebook
Questions or comments? Send email to support@wolfram.com.
|