发布时间:2022-08-18 18:11
导入seaborn自带的一些经典数据集,如iris等,若是直接使用load_dataset方法,经常会发生URLError:
def load_dataset(name, cache=True, data_home=None, **kws):
"""Load a dataset from the online repository (requires internet).
Parameters
----------
name : str
Name of the dataset (`name`.csv on
https://github.com/mwaskom/seaborn-data). You can obtain list of
available datasets using :func:`get_dataset_names`
cache : boolean, optional
If True, then cache data locally and use the cache on subsequent calls
data_home : string, optional
The directory in which to cache data. By default, uses ~/seaborn-data/
kws : dict, optional
Passed to pandas.read_csv
"""
从这里可以发现,这个数据集其实可以在github上下载,网址如下:
https://github.com/mwaskom/seaborn-data
然后我们又发现data-home这个属性:
data_home : string, optional
The directory in which to cache data. By default, uses ~/seaborn-data/
这个属性说的是,缓冲的数据放在哪。
~/seaborn-data/这个目录在linux一般指的是home目录,而windows对应的应该是我们的user目录,我在我的user下建立了一个seaborn-data,同时把github上的数据集下载下来,放入到seaborn-data里,如下:
便可以正确的导入数据集了:
【毕业设计】基于树莓派的智能小车设计 - 物联网 单片机 嵌入式 stm32
【深度学习】SETR:基于视觉 Transformer 的语义分割模型
Jetson Nano | darknet (yolov3.4-tiny)摄像头实时检测
matlab分段函数M文件,MATLAB用命令文件编分段函数
TCP/IP .Net Socket 编程(服务端和客户端)
「抄底 Android 内存优化 6」—— 浅析 Android 虚拟机内存管理
浏览器上写代码,4核8G微软服务器免费用,Codespaces真香
5月硬核预告!明晚开讲:Virtio 虚拟化技术趋势与 DPU 实践 | 第16 期
matplotlib学习 设置图片大小、windows和linux设置字体的方式、频数直方图偏移现象、normed=True无效