vDataFrame[].dropna¶
In [ ]:
vDataFrame[].dropna()
Filters the vDataFrame where the vcolumn is missing.
In [61]:
from verticapy.datasets import load_titanic
titanic = load_titanic()
titanic.count(["age"])
Out[61]:
In [62]:
titanic["age"].dropna()
titanic.count(["age"])
Out[62]:
See Also¶
| vDataFrame.filter | Filters the data using the input expression. |
