Skip to content

Commit

Permalink
Set fontsize to 13
Browse files Browse the repository at this point in the history
  • Loading branch information
pvti committed Nov 2, 2023
1 parent f33a70d commit aa9817d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions experiments/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ def main():

# Add legend
plt.legend(prop = { "size": 14 })
plt.xticks(fontsize=13)
plt.yticks(fontsize=13)

# Set aspect ratio to equal and grid on
# plt.axis("equal")
Expand Down
2 changes: 2 additions & 0 deletions experiments/kmeans.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,8 @@ def compute_inter_distance(centroids):

# Add legend
# plt.legend(prop = { "size": 13 })
plt.xticks(fontsize=13)
plt.yticks(fontsize=13)

# Set aspect ratio to equal and grid on
# plt.axis("equal")
Expand Down

0 comments on commit aa9817d

Please sign in to comment.