Skip to content

Commit

Permalink
increase title font size
Browse files Browse the repository at this point in the history
  • Loading branch information
asl3 committed May 23, 2024
1 parent 0531c96 commit 7247fdf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,9 @@ def visualize_citation_counts(self, paper_references, title_to_technique):
ax = plt.gca()
ax.spines["top"].set_visible(False)
ax.spines["right"].set_visible(False)
plt.ylabel("Citation Counts")
plt.xlabel("Prompting Techniques")
plt.title("Citation Counts of Prompting Techniques")
plt.ylabel("Counts", fontdict={"fontsize": 14})
plt.xlabel("Prompting Techniques", fontdict={"fontsize": 14})
plt.title("Citation Counts of Prompting Techniques", fontdict={"fontsize": 30})
plt.tight_layout()
plt.show()

Expand Down

0 comments on commit 7247fdf

Please sign in to comment.