gpt4 book ai didi

python - Spyder 4未显示图,并在“图” Pane 选项菜单下显示类似“ 'uncheck "静音在线图”的消息。

转载 作者:行者123 更新时间:2023-12-03 09:44:40 27 4
gpt4 key购买 nike

我写了这段代码。它应该以spyder ide显示图。

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from IPython.display import display
from sklearn.ensemble import RandomForestRegressor
from sklearn.metrics import mean_absolute_error
import scipy.signal
import scipy.stats
from sklearn.model_selection import train_test_split


train = pd.read_csv("train.csv", nrows=9000000,dtype={'acoustic_data':np.int16,'time_to_failure':np.float64})

train.rename({"acoustic_data": "signal", "time_to_failure": "quaketime"}, axis="columns", inplace=True)

#visualization(train,title="Acoustic data and time to failure: sampled data")
fig, ax = plt.subplots(2,1, figsize=(20,12))
ax[0].plot(train.index.values, train.quaketime.values, c="darkred")
ax[0].set_title("Quaketime of 10 Mio rows")
ax[0].set_xlabel("Index")
ax[0].set_ylabel("Quaketime in ms")
ax[1].plot(train.index.values, train.signal.values, c="mediumseagreen")
ax[1].set_title("Signal of 10 Mio rows")
ax[1].set_xlabel("Index")
ax[1].set_ylabel("Acoustic Signal")

Spyder IDE显示以下消息,而不显示图

Figures now render in the Plots pane by default. To make them also appear inline in the Console, uncheck "Mute Inline Plotting" under the Plots pane options menu.



我已经在google colab中测试了此代码。它绘制所需的图。我如何在Spyder IDE中进行绘图。
我正在使用Spyder 4.0.1。我没有找到任何要取消选中的“静音内联绘图”选项

最佳答案

您拥有的既不是错误也不是警告。这是一条指令。您可以找到以下选项:

enter image description here

忽略控制台输出,只是为了让您了解Spyder 4.0.1。

关于python - Spyder 4未显示图,并在“图” Pane 选项菜单下显示类似“ 'uncheck "静音在线图”的消息。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59769492/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com