2
我按照教程here看似最簡單的示例 - 線性關係。Seaborn情節未顯示
我對非常寬鬆的進口並不清楚,似乎也無法顯示我的情節。
my_seaborn_test.py
:
import numpy as np
import seaborn as sns
class SeabornTest(object):
def run_example(self):
sns.set(color_codes=True)
np.random.seed(sum(map(ord, "regression")))
tips = sns.load_dataset("tips")
sns.lmplot(x="size", y="tip", data=tips, x_estimator=np.mean)
在命令行:
python
from my_seaborn_test import SeabornTest
st = SeabornTest()
st.run_example()
我得到的是沉默,這樣的警告:
/home/me/anaconda3/envs/myenv/lib/python3.5/site-packages/matplotlib/__init__.py:892: UserWarning: axes.color_cycle is deprecated and replaced with axes.prop_cycle; please use the latter.
warnings.warn(self.msg_depr % (key, alt_key))
你可以'導入matplotlib.pyplot爲plt'然後'plt.show()'最後 –