Re: how to display both points and the line connecting them??
- To: mathgroup at smc.vnet.net
- Subject: [mg85138] Re: how to display both points and the line connecting them??
- From: "w.pasman" <w.pasman at tudelft.nl>
- Date: Wed, 30 Jan 2008 06:02:42 -0500 (EST)
The lousy way to do this is just plotting twice and merging the plots: points = {1, 2, 3}; l1 = ListPlot[points]; l2 = ListPlot[points, PlotJoined -> True]; Show[{l1, l2}]