當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python cudf.core.column.string.StringMethods.isfloat用法及代碼示例


用法:

StringMethods.isfloat() → SeriesOrIndex

檢查每個字符串中的所有字符是否形成浮點值。

如果字符串有零個字符,則為該檢查返回 False。

返回

布爾係列或索引

與原始係列/索引長度相同的布爾值係列或索引。

例子

>>> import cudf
>>> s = cudf.Series(["1.1", "0.123213", "+0.123", "-100.0001", "234",
... "3-"])
>>> s.str.isfloat()
0     True
1     True
2     True
3     True
4     True
5    False
dtype: bool
>>> s = cudf.Series(["this is plain text", "\t\n", "9.9", "9.9.9"])
>>> s.str.isfloat()
0    False
1    False
2     True
3    False
dtype: bool

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.isfloat。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。