Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
jameschapman19 committed Oct 26, 2023
2 parents 8b731c4 + 60df58f commit 6ecfb07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cca_zoo/visualisation/weights.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def plot(self, **kwargs):
self.weights_cov = [w.T @ w for w in self.weights]
# loop through each view and have a heatmap of the covariance of the weights_
for i, view_weights_cov in enumerate(self.weights_cov):
sns.heatmap(view_weights_cov, ax=axs[i],annot=True, **self.kwargs)
sns.heatmap(view_weights_cov, ax=axs[i], annot=True, **self.kwargs)
axs[i].set_title(self.view_labels[i])
plt.tight_layout()
self.figure_ = fig
Expand Down

0 comments on commit 6ecfb07

Please sign in to comment.