date¶
In [ ]:
date(expr)
Converts the input value to a DATE data type.
Parameters¶
| Name | Type | Optional | Description |
|---|---|---|---|
expr | object | ❌ | Expression. |
In [24]:
from verticapy import *
df = tablesample({"x": ['11-03-1993 12:05:10.23', '09-05-1959 03:10:20.12']}).to_vdf()
display(df)
In [25]:
# Importing the stats module
import verticapy.stats as st
# Applying the date function
df["date_x"] = st.date(df["x"])
display(df)
