Closed GanshengT closed 3 years ago
@GanshengT
Thank you for your thoughts. I think you are looking at the old version of the codes. Please install or upgrade to the latest version of bioinfokit (v2.0.2). It should solve this issue. Let me know if it does not work after upgrading to the latest version. Thank you.
Yes. This has been solved in v2.0.2. I am closing this issue.
When I run the function biplot(), I got an error message: " name 'color_result' is not defined". After looking through visuz.py. I found the following codes (line 1594-1605):
As far as I am concerned, the " s = plt.scatter(cscore[:, 0] xscale, cscore[:, 1] yscale, c=color_result, s=dotsize, alpha=valphadot, marker=markerdot)" should be : s = plt.scatter(cscore[:, 0] xscale, cscore[:, 1] yscale, c=color_result_num, s=dotsize, alpha=valphadot, marker=markerdot)
What are your thoughts?