year¶
In [ ]:
year(expr)
Returns an integer that represents the year portion of the specified date.
Parameters¶
| Name | Type | Optional | Description |
|---|---|---|---|
expr | object | ❌ | Expression. |
In [22]:
from verticapy import *
df = tablesample({"x": ['11-03-1993 12:05:10.23', '09-05-1959 03:10:20.12']}).to_vdf()
df["x"].astype("timestamp")
display(df)
In [23]:
# Importing the stats module
import verticapy.stats as st
# Applying the year function
df["year_x"] = st.year(df["x"])
display(df)
