Skip to content

Commit

Permalink
Removed output of dataframe to generate fig
Browse files Browse the repository at this point in the history
  • Loading branch information
earmingol committed Oct 7, 2024
1 parent e5b2440 commit 62b047c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sccellfie/plotting/differential_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,9 @@ def create_comparative_violin(adata, significant_features, group1, group2, condi
ax.set_xlabel(x_label, fontsize=fontsize)
ax.set_ylabel(y_label, fontsize=fontsize)
ax.set_xticklabels(labels=ax.get_xticklabels(), rotation=90, rotation_mode='anchor', ha='right', va='center',
fontsize=fontsize)
ax.tick_params(axis='both', which='major', labelsize=fontsize)
plt.legend(frameon=False, fontsize=fontsize)
fontsize=fontsize - 4)
ax.tick_params(axis='both', which='major', labelsize=fontsize - 4)
plt.legend(frameon=False, fontsize=fontsize - 2)

if title is None:
title = f"Feature Comparison: {group1} vs {group2} ({celltype})"
Expand Down

0 comments on commit 62b047c

Please sign in to comment.