Поворот надписей X-оси FacetGrid не работает - PullRequest
0 голосов
/ 05 февраля 2020

Я пытаюсь создать граненый график, используя seaborn в python, но у меня возникают проблемы с рядом вещей, одна из которых связана с вращением меток оси X.

Я сейчас нахожусь при попытке использовать следующий код:

import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt 

vin = pd.Series(["W1","W1","W2","W2","W1","W3","W4"])
word1 = pd.Series(['pdi','pdi','tread','adjust','fill','pdi','fill'])
word2 = pd.Series(['perform','perform','fill','measure','tire','check','tire'])
date = pd.Series(["01-07-2020","01-07-2020","01-07-2020","01-07-2020","01-08-2020","01-08-2020","01-08-2020"])

bigram_with_dates = pd.concat([vin,word1,word2,date], axis = 1)
names = ["vin", "word1","word2","date"]
bigram_with_dates.columns = names
bigram_with_dates['date'] = pd.to_datetime(bigram_with_dates['date'])
bigram_with_dates['text_concat'] = bigram_with_dates['word1'] + "," + bigram_with_dates['word2']

plot_params = sns.FacetGrid(bigram_with_dates, col="date", height=3, aspect=.5, col_wrap = 10,sharex = False, sharey = False)
plot = plot_params.map(sns.countplot, 'text_concat', color = 'c', order = bigram_with_dates['text_concat'])
plot_adjust = plot.fig.subplots_adjust(wspace=0.5, hspace=0.5)

for axes in plot.axes.flat:
    axes.set_xticklabels(axes.get_xticklabels(), rotation=90)

Когда я использую это, я получаю ошибку, которая гласит:

AttributeError: 'NoneType' object has no attribute 'axes'

Что, как я понимаю, означает, что нет возвращаемого объекта, так установка осей на ничего не делает ничего.

Этот код, кажется, работает в других сообщениях SO, с которыми я сталкивался, но я не могу заставить его работать.

Буду очень признателен за любые предложения относительно того, что я делаю неправильно.

Спасибо, Кертис

1 Ответ

1 голос
/ 05 февраля 2020

Попробуйте, кажется, вы перезаписали переменную plot.:

import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt 
%matplotlib inline

vin = pd.Series(["W1","W1","W2","W2","W1","W3","W4"])
word1 = pd.Series(['pdi','pdi','tread','adjust','fill','pdi','fill'])
word2 = pd.Series(['perform','perform','fill','measure','tire','check','tire'])
date = pd.Series(["01-07-2020","01-07-2020","01-07-2020","01-07-2020","01-08-2020","01-08-2020","01-08-2020"])

bigram_with_dates = pd.concat([vin,word1,word2,date], axis = 1)
names = ["vin", "word1","word2","date"]
bigram_with_dates.columns = names
bigram_with_dates['date'] = pd.to_datetime(bigram_with_dates['date']).dt.strftime('%m-%d-%Y')
bigram_with_dates['text_concat'] = bigram_with_dates['word1'] + "," + bigram_with_dates['word2']

plot = sns.FacetGrid(bigram_with_dates, col="date", height=3, aspect=.5, col_wrap = 10,sharex = False, sharey = False)
plot1 = plot.map(sns.countplot, 
                 'text_concat', 
                 color = 'c', 
                 order = bigram_with_dates['text_concat'].value_counts(ascending = False).iloc[:5].index)\
            .fig.subplots_adjust(wspace=0.5, hspace=12)

for axes in plot.axes.flat:
    _ = axes.set_xticklabels(axes.get_xticklabels(), rotation=90)
plt.tight_layout()

Вывод:

enter image description here

...