# データの読み込み df = pd.read_csv(r'sample_data.csv',names=['date','pointA','pointB','pointC'],skiprows=[0],engine='python',index_col=[0],parse_dates=[0]) df.index.freq = 'H' df.dropna().head() # 適宜'pointA'などの文字列を変更してください。 pointA = 'pointA' pointB = 'pointB' pointC = 'pointC' # グラフの設定 p = figure(title='タイトル', # タイトルを入力 x_axis_type='datetime', # x軸が時系列のindexを持っている場合、datetimeを指定 x_axis_label='timestamp',