5),dpi=100)ax1=figure1.add_subplot(1,1,1)bar1=FigureCanvasTkAgg(figure1,root)bar1.get_tk_widget().pack(side=tk.LEFT,fill=tk.BOTH)df1=df.groupby('target').sum()df1.plot(kind='bar
ax.plot(x1, y1, x2, y2)といった書き方で複数データを一気に描画できるax.plot()は常にLine2Dのリストを返す仕様になっています。↩ Register as a new user and use Qiita more conveniently You get articles that match your needs
# Earth Engine Python APIのインポートimportee# GEEの認証・初期化ee.Authenticate()ee.Initialize()# GEEのデータロードdefload_data(snippet,from_date,to_date,geometry,band):# パラメータの条件にしたがってデータを抽出dataset=ee.ImageCollection(snippet).filter(ee.Filter.date(from_date,to_dat...