tablesample.transpose¶
In [ ]:
tablesample.transpose()
Transposes the tablesample.
In [22]:
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]},)
display(dataset)
In [23]:
dataset.transpose()
Out[23]:
