Re: Epilog in ListLogPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg81510] Re: Epilog in ListLogPlot
- From: ben <benjamin.friedrich at gmail.com>
- Date: Wed, 26 Sep 2007 06:42:29 -0400 (EDT)
- References: <fd58sd$2i1$1@smc.vnet.net>
Re 5.2/linux Be careful how graphic primitive coordinates are specified in logarithmic plots; often Log[10,#]& needed LogListPlot[X, Epilog -> {Red, Point@{7, Log[10, 7]}}] Bye Ben On 23 Sep., 10:41, Bruce Colletti <vze26... 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