Skip to content

Commit

Permalink
adding debug steps
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Caballero committed Feb 27, 2025
1 parent 86ff1e1 commit 8eb30f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pydeeptools/deeptools/correlation.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,7 @@ def plot_pca(self, plot_filename=None, PCs=[1, 2], plot_title='', image_format=N
color = pltcolors.to_hex(color, keep_alpha=True)
ax1.scatter(Wt[PCs[0] - 1, i], Wt[PCs[1] - 1, i],
marker=marker, color=color, s=150, label=self.labels[i], zorder=i + 3)
print("Point: ", self.labels[i], Wt[PCs[0] - 1, i], Wt[PCs[1] - 1, i])
if plot_title == '':
ax1.set_title('PCA')
else:
Expand Down

0 comments on commit 8eb30f5

Please sign in to comment.