seaborn.objects: Rotation of ticks
See original GitHub issueHello,
might I suggest a new feature request: rotation of the ticks for seaborn objects? Or is it possible at this moment? I haven’t found it yet.
Currently I use .on(axis).plot()
and then on this axis I set it up via matplotlib with axis.xaxis.set_tick_params(rotation=90)
.
Issue Analytics
- State:
- Created 10 months ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Rotate axis tick labels in Seaborn and Matplotlib
While plotting these plots one problem arises -the overlapping of x labels or y labels which causes difficulty to read what is on...
Read more >Rotate label text in seaborn factorplot
You can rotate tick labels with the tick_params method on matplotlib Axes objects. To provide a specific example: ax.tick_params(axis='x', rotation=90).
Read more >Rotating axis labels in matplotlib and seaborn
In this article, we'll take a look at the classic example of this phenomenon - rotating axis tick labels. This seems like such...
Read more >Rotate Axis Tick Labels of Seaborn Plots
Since most seaborn plots return a matplotlib axes object, we can use the setp() function from this library. We will take the tick...
Read more >Rotate xtick labels in Seaborn boxplot using Matplotlib
Create data points for xticks. · Draw a boxplot using boxplot() method that returns the axis. · Now, set the xticks using set_xticks()...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I presume the implementation is difficult then. That’s pity, data scientists from my bubble need it quite often. If there was a switch for example
so.Continuous().label(rotation=90)
, it would be awesome.I assume you mean rotation of tick labels? I don’t think that’s currently supported since it’s not (AFAICT) something you can set a default for with
rcParams
.