3

Running the first example

LogPlot[x^x, {x, 1, 5}]

from the LogPlot documentation I get a plot without ticks highlighted in red

enter image description here

along with the error message

Tick specification must be a list or a function

The issue is already documented in this post and was attributed to a bug in ticksfun. However, the solution presented there does not work for me and the linked post claims that this bug was resolved in MMA 10.4. I'm using 11.2 (on macOS 10.13). Does that mean the issue was reintroduced in a different manner? If so, how can I fix it?

J. M.'s missing motivation
  • 124,525
  • 11
  • 401
  • 574
Janosh
  • 1,281
  • 8
  • 30

1 Answers1

7

I also had this issue with 11.3.0 on Mac. For me it was easily fixed by enabling 'dynamic updating' in the Evaluation menu (had been disabled due to an earlier evaluation gone wild!)

Bilko
  • 116
  • 1
  • 3
  • Related: https://mathematica.stackexchange.com/a/43611/4999 -- Alexey Popkov's fix: ImportString[ExportString[LogPlot[x^x, {x, 1, 5}], "NB"], "NB"][[1, 1, 1]] /. FrontEndValueCache[var_, val_] :> val // ToExpression – Michael E2 Mar 16 '19 at 20:58
  • Had to turn it of and on. Also, that would show up as impossibility to Monitor[...] stuff – picop Aug 18 '20 at 10:18