statsmodels.graphics.mosaicplot.mosaic()
空のセルをキャストするデータを使用してモザイク プロットを作成したいと思います。セルはそのサイズに関係なく作成されるため、結果のプロットでは見栄えが悪くなります。
例:
import matplotlib.pyplot as plt
import pandas as pd
from statsmodels.graphics.mosaicplot import mosaic
df = pd.DataFrame({'size' : ['small', 'large', 'large'],
'length' : ['long', 'short', 'long']})
print(df) # note that the 'short'-'small' combination is missing
fig = plt.figure()
ax = fig.add_subplot(111)
mosaic(df, ax=ax)
値 "short small" の空のセルでプロットを作成します。
このセルの作成を回避する方法、または後でプロットから削除する方法はありますか?