STREAM icon indicating copy to clipboard operation
STREAM copied to clipboard

a legend bug

Open wangli-sh opened this issue 3 years ago • 3 comments

recently i find a bug in core.py the raw code is : ax_i.legend(handles=legend_handles[1:], labels=legend_labels[1:], code in this way will loss the first legend label i change the code into ax_i.legend(handles=legend_handles[0:], labels=legend_labels[0:], and the problem is solved

wangli-sh avatar May 28 '21 02:05 wangli-sh

Hi, thanks for the feedback and for sharing the solution! I am glad you solved the problem. We will definitely keep this in mind and fix it in the next release. thanks again!

huidongchen avatar May 28 '21 13:05 huidongchen

recently i find a bug in core.py the raw code is : ax_i.legend(handles=legend_handles[1:], labels=legend_labels[1:], code in this way will loss the first legend label i change the code into ax_i.legend(handles=legend_handles[0:], labels=legend_labels[0:], and the problem is solved

Hi wangli-sh,

Thanks so much. I just solved my problem in issue #130 My comment

wong-ziyi avatar Dec 11 '21 06:12 wong-ziyi

Thanks for reporting the problem and the solution! We will incorporate it in the next release of STREAM.

On Sat, Dec 11, 2021 at 1:45 AM Wang Ziyi @.***> wrote:

recently i find a bug in core.py the raw code is : ax_i.legend(handles=legend_handles[1:], labels=legend_labels[1:], code in this way will loss the first legend label i change the code into ax_i.legend(handles=legend_handles[0:], labels=legend_labels[0:], and the problem is solved

Hi wangli-sh,

Thanks so much. I just solved my problem in issue #130 https://github.com/pinellolab/STREAM/issues/130 My comment https://github.com/pinellolab/STREAM/issues/130#issuecomment-991488883

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/pinellolab/STREAM/issues/122#issuecomment-991491615, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAIH72QO4F3PX7Y46IKJ6YLUQLXR3ANCNFSM45VSG3KQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

lucapinello avatar Dec 11 '21 15:12 lucapinello