Horje
change xlabel rotate in seaborn Code Example
seaborn rotate xlabels
plt.figure(figsize=(10,5))
chart = sns.countplot(
    data=data[data['Year'] == 1980],
    x='Sport',
    palette='Set1'
)
chart.set_xticklabels(chart.get_xticklabels(), rotation=45)
change xlabel rotate in seaborn
import pandas
import matplotlib.pylab as plt
import seaborn as sns
import numpy as np
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
df = pandas.DataFrame({"X-Axis": [np.random.randint(10) for i in range(10)], "YAxis": [i for i in range(10)]})
bar_plot = sns.barplot(x='X-Axis', y='Y-Axis', data=df)
plt.xticks(rotation=45)
plt.show()




Whatever

Related
wpa_supplicant.conf Code Example wpa_supplicant.conf Code Example
espresso intent library dependency Code Example espresso intent library dependency Code Example
express server sockjs Code Example express server sockjs Code Example
CodeIgniter get_where order_by Code Example CodeIgniter get_where order_by Code Example
how to add vertical line on subplot in matplotlib Code Example how to add vertical line on subplot in matplotlib Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8