y数据示例:
当对y进行多维索引 y[:,np.newaxis] 时出现FutureWarning
FutureWarning: Support for multi-dimensional indexing (e.g.
obj[:, None]
) is deprecated and will be removed in a future version.
Convert to a numpy array before indexing instead.
这是由于python版本和工具库版本不对应产生的警告
- 方法一:忽略警告
import warnings
warnings.filterwarnings("ignore")
方法二:在索引之前转换为numpy数组文章来源:https://www.toymoban.com/news/detail-606664.html
y.to_numpy()[:,np.newaxis]
方法三:使用其他增加维度的方法文章来源地址https://www.toymoban.com/news/detail-606664.html
np.expand dims(y,axis=1)
到了这里,关于Python增加维度时使用newaxis索引报警告的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!