eland.Series.to_string#

Series.to_string(buf=None, na_rep='NaN', float_format=None, header=True, index=True, length=False, dtype=False, name=False, max_rows=None, min_rows=None) Optional[str]#

呈现 Series 的字符串表示形式。

遵循 pandas 的实现,除了 max_rows=None。在这种情况下,我们设置 max_rows=60 以避免意外地转储整个索引。这可以通过明确设置 max_rows 来覆盖。

另请参阅#

pandas.Series.to_string

有关参数详细信息。