vDataFrame.del_catalog¶
In [ ]:
vDataFrame.del_catalog()
Delete the current vDataFrame catalog.
In [3]:
# Computing some aggregations which will be stored
# in the vDataFrame catalog
from verticapy import *
titanic = vDataFrame("titanic")
titanic.describe()
display(titanic["age"].catalog)
In [4]:
# Deleting the current catalog
titanic.del_catalog()
display(titanic["age"].catalog)
