Re: Apply on MultipleListPlot using pure functions
- To: mathgroup at smc.vnet.net
- Subject: [mg54320] Re: [mg54295] Apply on MultipleListPlot using pure functions
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Thu, 17 Feb 2005 10:30:40 -0500 (EST)
- Reply-to: hanlonr at cox.net
- Sender: owner-wri-mathgroup at wolfram.com
Needs["Graphics`MultipleListPlot`"]; MultipleListPlot[##,Frame->True ]&[{1,2,3},{4,5,6},{2,3,4}]; Apply[MultipleListPlot[##,Frame->True ]&,{{1,2,3},{4,5,6},{2,3,4}}]; Bob Hanlon > > From: pdickof at scf.sk.ca To: mathgroup at smc.vnet.net > Date: 2005/02/16 Wed PM 02:36:18 EST > To: mathgroup at smc.vnet.net > Subject: [mg54320] [mg54295] Apply on MultipleListPlot using pure functions > > I seem to be missing soomething with using Apply on pure functions. > > The following lines work properly: > Needs["Graphics`MultipleListPlot`"] > MultipleListPlot[{1, 2, 3}, {4, 5, 6}, {2, 3, 4}]; > Apply[MultipleListPlot, > {{1, 2, 3}, {4, 5, 6}, {2, 3, 4}}]; > > but this does not. Why not? > Apply[MultipleListPlot[#, Frame -> True]&, > {{1, 2, 3}, {4, 5, 6}, {2, 3, 4}}]; > >