FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 2a348413 authored by M.D. Driver's avatar M.D. Driver
Browse files

rotate x tick labels.

parent 0891ddaf
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ def plot_similarity_matrix(input_data, **kwargs):
simil_plot_axis.grid(True)
simil_plot_axis.set_xticks(range(len(input_data["labels"])))
simil_plot_axis.set_yticks(range(len(input_data["labels"])))
simil_plot_axis.set_xticklabels(input_data["labels"])
simil_plot_axis.set_xticklabels(input_data["labels"], rotation=90)
simil_plot_axis.set_yticklabels(input_data["labels"])
simil_plot_axis.set_xlabel("Solvent")
simil_plot_axis.set_ylabel("Solvent")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment