给我一份python的seaborn库中的数据集的excel文件
时间: 2024-03-10 22:47:25 浏览: 146
py数据分析numpy, pandas, matplotlib, pyecharts, seaborn
Seaborn库中的数据集并没有提供excel文件格式,但是可以通过pandas库将数据集保存为excel文件。以下是一份Python Seaborn库中的数据集,并将其保存为excel文件的示例代码:
```python
import seaborn as sns
import pandas as pd
# 加载tips数据集
tips = sns.load_dataset("tips")
# 将tips数据集保存为excel文件
tips.to_excel("tips.xlsx", index=False)
```
在这个示例中,我们使用pandas库中的`to_excel()`函数将tips数据集保存为名为tips.xlsx的excel文件,并且将索引列从保存中排除。
阅读全文