File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
spec/API_specification/dataframe_api Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -589,12 +589,14 @@ def isnull(self) -> DataFrame:
589
589
Notes
590
590
-----
591
591
Does *not* include NaN-like entries.
592
+ May optionally include 'NaT' values (if present in an implementation),
593
+ but note that the Standard makes no guarantees about them.
592
594
"""
593
595
...
594
596
595
597
def isnan (self ) -> DataFrame :
596
598
"""
597
- Check for nan-like entries.
599
+ Check for nan entries.
598
600
599
601
Returns
600
602
-------
@@ -606,7 +608,8 @@ def isnan(self) -> DataFrame:
606
608
607
609
Notes
608
610
-----
609
- Includes anything with NaN-like semantics, e.g. np.datetime64("NaT") .
611
+ This only checks for 'NaN' .
610
612
Does *not* include 'missing' or 'null' entries.
613
+ In particular, does not check for `np.timedelta64('NaT')`.
611
614
"""
612
615
...
You can’t perform that action at this time.
0 commit comments