Hello! I have run into an issue when using the FastLMM plotp.qqplot() function with newer versions of pylab/matplotlib. Specifically in line 934 of plotp.py:
for lo in leg.legendHandles: lo.set_markersize(10)
I get an AttributeErrror: 'Legend' object has no attribute 'legendHandles'
Hello! I have run into an issue when using the FastLMM plotp.qqplot() function with newer versions of pylab/matplotlib. Specifically in line 934 of plotp.py:
for lo in leg.legendHandles: lo.set_markersize(10)
I get an AttributeErrror: 'Legend' object has no attribute 'legendHandles'
I was able to fix it by changing legendHandles to legend_handles.