実現したいこと
matplotlibを使用して横向きの棒グラフを描画し、3種類のデータフレームのデータを重ね合わせて表示したいです。
発生している問題
縦軸を日時にしているのですが、実行結果を日時の昇順若しくは降順に統一したいのですが、現在のソースでは実行結果で日時の並びがソートされません。
該当のソースコード
import pandas as pd import matplotlib.pyplot as plt df1 = pd.DataFrame([['2020-01-01 12:00:00', 80], ['2020-01-01 12:02:00', 60], ['2020-01-01 12:03:00', 40], ['2020-01-01 12:04:00', 20], ['2020-01-01 12:05:00', 5]]) df2 = pd.DataFrame([['2020-01-01 12:03:00', 180], ['2020-01-01 12:07:00', 160], ['2020-01-01 12:09:00', 140], ['2020-01-01 12:11:00', 120], ['2020-01-01 12:05:00', 15]]) df3 = pd.DataFrame([['2020-01-01 12:02:00', 40], ['2020-01-01 12:04:00', 30], ['2020-01-01 12:06:00', 20], ['2020-01-01 12:08:00', 10], ['2020-01-01 12:10:00', 3]]) df1.columns = ['time', 'count'] df2.columns = ['time', 'count'] df3.columns = ['time', 'count'] df1 = df1.set_index('time') df2 = df2.set_index('time') df3 = df3.set_index('time') fig, ax = plt.subplots(1, 1) ax.barh(df1.index, df1['count'], color='red', alpha=0.2) ax.barh(df2.index, df2['count'], color='blue', alpha=0.2) ax.barh(df3.index, df3['count'], color='green', alpha=0.2)
実行結果
試したこと
・set_index()を実行する前にsort_values('time)を実行し、事前に個々のデータをソートしましたが、実行結果は特に変わらずという状況です。
・次にtimeが文字列型になっていることで大小関係が判断出来ず、並び順が統一されないのでは無いかと思い、データフレーム生成時にとしたところ、全く想定外の画像が出力されました。。。
df1 = pd.DataFrame([[pd.to_datetime('2020-01-01 12:00:00'), 80], [pd.to_datetime('2020-01-01 12:02:00'), 60], [pd.to_datetime('2020-01-01 12:03:00'), 40], [pd.to_datetime('2020-01-01 12:04:00'), 20], [pd.to_datetime('2020-01-01 12:05:00'), 5]]) df2 = pd.DataFrame([[pd.to_datetime('2020-01-01 12:03:00'), 180], [pd.to_datetime('2020-01-01 12:07:00'), 160], [pd.to_datetime('2020-01-01 12:09:00'), 140], [pd.to_datetime('2020-01-01 12:11:00'), 120], [pd.to_datetime('2020-01-01 12:05:00'), 15]]) df3 = pd.DataFrame([[pd.to_datetime('2020-01-01 12:02:00'), 40], [pd.to_datetime('2020-01-01 12:04:00'), 30], [pd.to_datetime('2020-01-01 12:06:00'), 20], [pd.to_datetime('2020-01-01 12:08:00'), 10], [pd.to_datetime('2020-01-01 12:10:00'), 3]])
何かお気づきの点がございましたら、ご回答いただけると幸いです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/10 13:02