vDataFrame[].category¶
In [ ]:
vDataFrame[].category()
Returns the vcolumn category. The category will be one of the following:
date / int / float / text / binary / spatial / uuid / undefined.
In [28]:
from verticapy.datasets import load_amazon
amazon = load_amazon()
display(amazon)
In [6]:
amazon["number"].category()
Out[6]:
In [22]:
amazon["state"].category()
Out[22]:
In [23]:
amazon["date"].category()
Out[23]:
See Also¶
| vDataFrame[].ctype | Returns the vcolumn DB type. |
