我将 ibis 与 bigquery 后端一起使用。
我想使用 .add() 方法为日期添加时间间隔。
但是我不知道如何指定这样的时间间隔:下面代码中的“which_type_here”变量。
谢谢你的帮助!
import ibis
import ibis_bigquery
import pandas as pd
import datetime as dt
my_project = "your_poject"
my_dataset = 'your_dataset'
conn = ibis_bigquery.connect(
project_id=my_project,
dataset_id=my_dataset)
pdf = pd.DataFrame({'date': [dt.date(2020, 1, 1),
dt.date(2020, 5, 19),
dt.date(2021, 7, 9)],
})
client = bigquery.Client(project=my_project)
table = my_dataset + ".mytable"
client.delete_table(table, not_found_ok=True)
job = client.load_table_from_dataframe(pdf, table)
t = conn.table("mytable")
which_type_here = ????
e = t.mutate(new_date=t.date.add(which_type_here))