def titanic_vd(base): from verticapy.datasets import load_titanic titanic = load_titanic(cursor=base.cursor) yield titanic with warnings.catch_warnings(record=True) as w: drop(name="public.titanic", cursor=base.cursor)
def titanic_vd(): titanic = load_titanic() yield titanic drop(name="public.titanic")