I tried to load a dataframe from python to BigQuery using pandas-gbq library
df.to_gbq(destination_table='xxxx',
project_id='xxxxx',
if_exists='append')
But I get an error like this:
Permission bigquery.tables.get denied on table "xxxxx" (or it may not exist).
But, I already get permission as Editor in google project, but why did I can not load dataframe bigquery? I tried to create the table first, but still failed.