module pandashelper.tblfunction

Short summary

module pyquickhelper.pandashelper.tblfunction

Various function to deal with pandas tables

source on GitHub

Functions

function

truncated documentation

isempty

checks that a string is empty, returns also True if s is NaN

isnan

calls numpy.isnan but checks it is a float first

Documentation

Various function to deal with pandas tables

source on GitHub

pyquickhelper.pandashelper.tblfunction.isempty(s)[source]

checks that a string is empty, returns also True if s is NaN

Parameters:

sstr or numpy.NaN

Returns:

boolean

The function imports numpy (delayed import).

source on GitHub

pyquickhelper.pandashelper.tblfunction.isnan(s)[source]

calls numpy.isnan but checks it is a float first

Parameters:

s – object

Returns:

boolean

@raise TypeError if s is not a float

The function imports numpy (delayed import).

source on GitHub