vDataFrame[].dropna

In [ ]:
vDataFrame[].dropna()

Filters the vDataFrame where the vcolumn is missing.

Returns

vDataFrame : self.parent

Example

In [61]:
from verticapy.datasets import load_titanic
titanic = load_titanic()
titanic.count(["age"])
countpercent
"age"997.080.794
Out[61]:

In [62]:
titanic["age"].dropna()
titanic.count(["age"])
237 element(s) was/were filtered
countpercent
"age"997.0100.0
Out[62]:

See Also

vDataFrame.filter Filters the data using the input expression.