用法:
Series.to_markdown(buf=None, mode='wt', index=True, storage_options=None, **kwargs)
以Markdown-friendly 格式打印系列。
- buf:str,路径或StringIO-like,可选,默认无
要写入的缓冲区。如果为 None,则输出作为字符串返回。
- mode:str,可选
打开文件的模式,默认为“wt”。
- index:布尔值,可选,默认 True
添加索引(行)标签。
- storage_options:字典,可选
对特定存储连接有意义的额外选项,例如主机、端口、用户名、密码等。对于 HTTP(S) URL,键值对作为标头选项转发到
urllib
。对于其他 URL(例如以 “s3://” 和 “gcs://” 开头),键值对被转发到fsspec
。有关详细信息,请参阅fsspec
和urllib
。- **kwargs:
这些参数将被传递给制表。
- str
Markdown-friendly 格式的系列。
参数:
返回:
注意:
需要制表包。
例子:
>>> s = pd.Series(["elk", "pig", "dog", "quetzal"], name="animal") >>> print(s.to_markdown()) | | animal | |---:|:---------| | 0 | elk | | 1 | pig | | 2 | dog | | 3 | quetzal |
使用表格选项输出降价。
>>> print(s.to_markdown(tablefmt="grid")) +----+----------+ | | animal | +====+==========+ | 0 | elk | +----+----------+ | 1 | pig | +----+----------+ | 2 | dog | +----+----------+ | 3 | quetzal | +----+----------+
相关用法
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.to_pickle用法及代码示例
- Python pandas.Series.to_xarray用法及代码示例
- Python pandas.Series.to_excel用法及代码示例
- Python pandas.Series.to_numpy用法及代码示例
- Python pandas.Series.to_latex用法及代码示例
- Python pandas.Series.to_json用法及代码示例
- Python pandas.Series.to_hdf用法及代码示例
- Python pandas.Series.to_sql用法及代码示例
- Python pandas.Series.to_frame用法及代码示例
- Python pandas.Series.to_dict用法及代码示例
- Python pandas.Series.to_clipboard用法及代码示例
- Python pandas.Series.truediv用法及代码示例
- Python pandas.Series.take用法及代码示例
- Python pandas.Series.tz_localize用法及代码示例
- Python pandas.Series.tail用法及代码示例
- Python pandas.Series.truncate用法及代码示例
- Python pandas.Series.transform用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.to_markdown。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。