我试图使用来自seaborn的“tips”数据集:
import seaborn as sns
tips = sns.load_dataset("tips")
Run Code Online (Sandbox Code Playgroud)
ValueError Traceback (most recent call last)
Cell In[5], line 1
----> 1 a = sns.load_dataset("anagrams")
2 a.info()
File C:\anaconda3\lib\site-packages\seaborn\utils.py:587, in load_dataset(name, cache, data_home, **kws)
585 if not os.path.exists(cache_path):
586 if name not in get_dataset_names():
--> 587 raise ValueError(f"'{name}' is not one of the example datasets.")
588 urlretrieve(url, cache_path)
589 full_path = cache_path
ValueError: 'anagrams' is not one of the example datasets.
Run Code Online (Sandbox Code Playgroud)
然后我尝试:
sns.get_dataset_names()
输出是一个空列表:[]
我可以使用seaborn图。我还尝试使用以下方法更新我的seaborn:
!pip install seaborn --upgrade
但这没有帮助。
能否请你帮忙?