I’ve tried setting a single subplot y axis to log in a facet plot (created with pl=px.line(…, facet-row=…))
sp = pl.get_subplot(2,1)
sp.yaxes.type=‘log’
and then sp is
SubplotXY(xaxis=layout.XAxis({
'anchor': 'y5', 'domain': [0.0, 0.98], 'matches': 'x', 'showticklabels': False
}), yaxis=layout.YAxis({
'anchor': 'x5', 'domain': [0.8240000000000001, 1.0], 'matches': 'y', 'title': {'text': 'value'}, 'type': 'log'
}))
then displaying pl in a notebook by having it alone in a cell
pl
but the axes are not as I want them, (the wrong ones are log, more than one (and I’ve set one), i know about the 1-indexing)
am I missing something obvious ?
also, can I individually set the ylim?