Seaborn.get_data_home() 方法

Seaborn.get_data_home() 方法用于返回内置数据集缓存目录的路径。

返回路径后,该目录将由 load_dataset() 方法使用。 如果未提供此方法的参数 data_home; 它将使用由 seaborn_data 环境变量(如果存在)指定的目录,或者默认为适合操作系统的用户缓存位置。

语法

以下是 get_data_home() 方法的语法 −

sns.get_data_home()

参数

这个方法没有参数

返回值

在调用 thisd 方法时,只返回缓存目录的路径,就像上面提到的那样。 此方法通常后跟 load_dataset() 方法,因为在了解用户所在的目录后,用户可以加载数据集并继续绘图。

示例

此方法的工作原理如下所示。 调用方法时如下所示。 获得以下输出。

import seaborn as sns
import matplotlib.pyplot as plt
path = sns.get_data_home()
print(path)

输出

获取到缓存目录的路径,在本例中为以下内容。

'/root/seaborn-data'

❮Seaborn 实用函数简介