module pandashelper.tblfunction
¶
Short summary¶
module pyquickhelper.pandashelper.tblfunction
Various function to deal with pandas tables
Functions¶
function |
truncated documentation |
---|---|
checks that a string is empty, returns also True if s is |
|
calls numpy.isnan but checks it is a float first |
Documentation¶
Various function to deal with pandas tables
-
pyquickhelper.pandashelper.tblfunction.
isempty
(s)[source]¶ checks that a string is empty, returns also True if s is
NaN
- Parameters
s –
str
ornumpy.NaN
- Returns
boolean
The function imports numpy (delayed import).
-
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 afloat
The function imports numpy (delayed import).