tablesample.to_vdf¶
In [ ]:
tablesample.to_vdf()
Converts the tablesample to a vDataFrame.
In [20]:
from verticapy.utilities import *
dataset = tablesample(values = {"index": ["region", "price", "quality"],
"Banana": ["Brazil", 2.3, 2],
"Manguo": ["Columbia", 6.7, 5],
"Apple": ["France", 1.5, 2]},).transpose()
display(dataset)
In [21]:
display(dataset.to_vdf())
