Closed mschauer closed 6 years ago
Strings in Julia use double quotes
~That is not the problem.~
I'll better check and reopen.
I look into this. I had unsuccessfully tried both fill_between(ts, upper, lower, hatch="X")
and fill_between(ts, upper, lower, hatch='X')
and settled to report the wrong one (?fill_between
uses Python strings which look like julica character constants). Anyway it turned out that this is a bug in Matplotlib or even higher upstream.
fill_between(ts, upper, lower, hatch="X")
does not work. It givesAttributeError: 'PyCall.jlwrap' object has no attribute 'count'
. But the argumenthatch =
is accepted. (Edit: Double quotes)