This project is a small collection of functions that check arguments for being na-values.
All of the functions work by using
pandas.isna
.
This function determines if all of the
values
passed to it are NaN.
This function determines if all of the
values
passed to it are not NaN.
This function determines if any of the
values
passed to it are NaN.
This function determines if any of the
values
passed to it are not NaN.
This function determines if the
values
passed to it are NaN. If some are and some are not then a
ValueError
is raised.
This function determines if the
values
passed to it are not NaN. If some are and some are not then a
ValueError
is raised.