Grp=dfRawData_JP.groupby(['A','Week Ending Date','B','C']).sum() Pivot_Grp=Grp.pivot_table(index=['A','B','C'],columns=['Week Ending Date'], values=['Served'],aggfunc='sum').round(2).fillna(0) Pivot_Grp["Growth"]=Pivot_Grp['Served']['2020-06-27']-Pivot_Grp['Served']['2020-06-20'] Pivot_Grp.sort_values('Growth',ascending=False).round().head(50) iris=Pivot_Grp.sort_values('Growth',ascending=False).round().head(50) #GSの設定 import pandas as pd import gspread import json from oauth2client.service_account import ServiceAccountCredentials #2つのAPIを記述しないとリフレッシュトークンを3600秒毎に発行し続けなければならない scope = ['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive'] #認証情報設定 #ダウンロードしたjsonファイル名をクレデンシャル変数に設定(秘密鍵、Pythonファイルから読み込みしやすい位置に置く) credentials = ServiceAccountCredentials.from_json_keyfile_name('XXXXXX.json', scope) #OAuth2の資格情報を使用してGoogle APIにログインします。 gc = gspread.authorize(credentials) #共有設定したスプレッドシートキーを変数[SPREADSHEET_KEY]に格納する。 SPREADSHEET_KEY = 'XXXXX' #共有設定したスプレッドシートのワークシート1を開く worksheet = gc.open_by_key(SPREADSHEET_KEY).sheet1 # GoogleSheetに書き出す def toAlpha(num): if num<=26: return chr(64+num) elif num%26==0: return toAlpha(num//26-1)+chr(90) else: return toAlpha(num//26)+chr(64+num%26) cell_list = worksheet.range('A1:'+toAlpha(col_lastnum+1)+str(row_lastnum+1)) for cell in cell_list: if cell.col == 1 and cell.row == 1: val = '' elif cell.col == 1: val = iris.index[cell.row-2] elif cell.row == 1: val = iris.columns[cell.col-2] else: val = iris.iloc[cell.row-2][cell.col-2] cell.value = val worksheet.update_cells(cell_list)
【エラーメッセ】
index 3 is out of bounds for axis 0 with size 3
【したいこと】
Pivotで作ったDataFrameをIndex、コラムをそのままシートに移動したいです。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。