Re: Epilog in ListLogPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg81442] Re: [mg81433] Epilog in ListLogPlot
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sun, 23 Sep 2007 21:13:09 -0400 (EDT)
- Reply-to: hanlonr at cox.net
You need to take the Log in Epilog X = {{2, 4}, {9, 5}, {12, 13}}; ListLogPlot[X, PlotRange -> {{0, 13}, {1, 14}}, Epilog -> {Red, Point@{7, Log[7]}}] Bob Hanlon ---- Bruce Colletti <vze269bv at verizon.net> wrote: > Re 6.0.1 under WinXP. > > Consider the code: > > X = {{2, 4}, {9, 5}, {12, 13}}; > ListPlot[X, Epilog -> {Red, Point@{4, 6}}] > ListLogPlot[X, Epilog -> {Red, Point@{7, 7}}] > > Helptext says ListLogPlot has ListPlot's options. > > Unlike Plot #1, why doesn't the red dot appear in Plot #2? > > Thankx. > > Bruce > > >