我正在运行以下代码并遇到此问题 -
" /usr/local/lib/python2.7/dist-packages/seaborn/timeseries.py:183:UserWarning:tsplot函数已弃用,将被删除或替换(在实质上已更改的版本中)在将来的版本中。 warnings.warn(msg,UserWarning) &#34 ;.
有人知道如何解决这个问题吗?
代码 -
import numpy as np
import tensorflow as tf
import seaborn as sns
import pandas as pd
SEQ_LEN = 10
def create_time_series():
freq = (np.random.random()*0.5) + 0.1 # 0.1 to 0.6
ampl = np.random.random() + 0.5 # 0.5 to 1.5
x = np.sin(np.arange(0,SEQ_LEN) * freq) * ampl
return x
for i in xrange(0, 5):
sns.tsplot( create_time_series() ); # 5 series
答案 0 :(得分:1)
根据评论:这是一个警告,而不是错误。您将收到警告,您将使用的功能将来会从Seaborn中删除。请忽略警告或使用其他功能,例如来自plt.plot()
的{{1}}。