- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用Flask制作一个网络应用,该应用在一个网页上显示不同的pyplot图表。以下是我用来创建不同绘图的代码,然后将它们作为以base64编码的png图像返回。
import pandas as pd
import numpy as np
from sklearn.linear_model import LinearRegression
from sklearn.metrics import mean_squared_error
import matplotlib.pyplot as plt
import io
import base64
def simple_plot():
img = io.BytesIO()
np.random.seed(196801)
x = np.random.rand(50)
y = np.random.rand(50)
plt.plot(x, y)
plt.savefig(img, format='png')
img.seek(0)
lp = base64.b64encode(img.getvalue()).decode()
plt.close()
return lp
def scatter_plot():
img = io.BytesIO()
np.random.seed(19680801)
x = np.random.rand(30)
y = np.random.rand(30)
colors = np.random.rand(30)
area = np.pi * (15 * np.random.rand(30)) ** 2
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.savefig(img, format='png')
img.seek(0)
sp = base64.b64encode(img.getvalue()).decode()
plt.close()
return sp
def linear_reg_plot():
data = pd.read_csv("data/clean_df.csv")
lm = LinearRegression()
img = io.BytesIO()
X = data[['highway-mpg']]
Y = data['price']
lm.fit(X, Y)
predict = np.around(np.array(lm.predict(X)))
intercept = lm.intercept_
slope = lm.coef_
plt.plot(X, predict)
plt.savefig(img, format='png')
img.seek(0)
plot = base64.b64encode(img.getvalue()).decode()
plt.close()
x = data['highway-mpg'].values.tolist()
y = data['price'].values.tolist()
result = {
'X': x[:50],
'Y': y[:50],
'Predicted': predict[:50],
'intercept': intercept,
'slope': slope,
'msqe': mean_squared_error(y, predict),
'r2': lm.score(X, predict),
'chart': plot
}
return result
plt.close()
后,它会显示正确的图,但是现在我遇到了这个错误,这导致flask应用程序崩溃了,并且有一个消息框说Python崩溃了。
127.0.0.1 - - [05/Jul/2018 14:55:04] "GET /dashboard HTTP/1.1" 200 -
Exception ignored in: <bound method Image.__del__ of <tkinter.PhotoImage object at 0x000000644962F0F0>>
Traceback (most recent call last):
File "E:\ProgramData\Anaconda3\Lib\tkinter\__init__.py", line 3501, in __del__
self.tk.call('image', 'delete', self.name)
RuntimeError: main thread is not in main loop
Exception ignored in: <bound method Image.__del__ of <tkinter.PhotoImage object at 0x0000006449638048>>
Traceback (most recent call last):
File "E:\ProgramData\Anaconda3\Lib\tkinter\__init__.py", line 3501, in __del__
self.tk.call('image', 'delete', self.name)
RuntimeError: main thread is not in main loop
Exception ignored in: <bound method Image.__del__ of <tkinter.PhotoImage object at 0x00000064495AAA20>>
Traceback (most recent call last):
File "E:\ProgramData\Anaconda3\Lib\tkinter\__init__.py", line 3501, in __del__
self.tk.call('image', 'delete', self.name)
RuntimeError: main thread is not in main loop
Exception ignored in: <bound method Image.__del__ of <tkinter.PhotoImage object at 0x00000064495D5C50>>
Traceback (most recent call last):
File "E:\ProgramData\Anaconda3\Lib\tkinter\__init__.py", line 3501, in __del__
self.tk.call('image', 'delete', self.name)
RuntimeError: main thread is not in main loop
Exception ignored in: <bound method Image.__del__ of <tkinter.PhotoImage object at 0x00000064495B61D0>>
Traceback (most recent call last):
File "E:\ProgramData\Anaconda3\Lib\tkinter\__init__.py", line 3501, in __del__
self.tk.call('image', 'delete', self.name)
RuntimeError: main thread is not in main loop
Exception ignored in: <bound method Image.__del__ of <tkinter.PhotoImage object at 0x0000006448E629E8>>
Traceback (most recent call last):
File "E:\ProgramData\Anaconda3\Lib\tkinter\__init__.py", line 3501, in __del__
self.tk.call('image', 'delete', self.name)
RuntimeError: main thread is not in main loop
Exception ignored in: <bound method Image.__del__ of <tkinter.PhotoImage object at 0x0000006448EC8940>>
Traceback (most recent call last):
File "E:\ProgramData\Anaconda3\Lib\tkinter\__init__.py", line 3501, in __del__
self.tk.call('image', 'delete', self.name)
RuntimeError: main thread is not in main loop
Exception ignored in: <bound method Image.__del__ of <tkinter.PhotoImage object at 0x0000006448E69160>>
Traceback (most recent call last):
File "E:\ProgramData\Anaconda3\Lib\tkinter\__init__.py", line 3501, in __del__
self.tk.call('image', 'delete', self.name)
RuntimeError: main thread is not in main loop
Tcl_AsyncDelete: async handler deleted by the wrong thread
最佳答案
就在行前
import matplotlib.pyplot as plt
import matplotlib
matplotlib.use('agg')
关于python-3.x - 使用pyplot.close()会导致 flask 应用崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51188461/
此错误显然源于 xlsxwriter。我不确定它来自我的代码的哪一行,因为每次我尝试调试时,我的编辑器 Visual Studio 2019 都会崩溃。但是,在使用 VPN 和远程桌面连接时,我在笔记
我有一个用于原型(prototype)的游戏数据表。我在工作时生成数据,但当我离开并且我的机器进入休眠状态时,数据生成停止。这导致我的元素收藏出现很大差距。 我希望能够移动表格的 DateTimeCr
我正在使用wavesurfer在我的网页上显示歌曲波形。我正在使用以下代码 - function setupSongwaves(songJson) { var songwaveid = '#s
我是 JDBC 新手... Student类有Constructor、add()、update()和delete()等方法... 在构造函数中打开连接。下面代码中的 conn.close() 和 ps
考虑以下代码,它是许多 ChannelFactory 示例的典型代码: WSHttpBinding myBinding = new WSHttpBinding(); EndpointAddress m
我正在阅读 Java Data Access — JDBC、JNDI 和 JAXP,了解 Connection、PooledConnection 接口(interface)。据我了解, PooledC
我正在做我的第一个 android 学习教程,但遇到了标题描述的这个错误..这是我试图在 Eclipse 上做的应用程序,java,这是我的代码..(代码是自动生成的由项目) package com.
我正在使用 JPA、Hibernate、Jboss 和容器管理事务。当我尝试用数据保存我的大实体时,它会抛出以下异常。将我的实体视为图形模型。这个异常并不是每次都会抛出。 ERROR [org.jbo
我有 GWT 应用程序,它与 AdaptivePayment API 上的灯箱集成。 我无法使用提供的代码关闭取消/返回页面: dgFlow = top.dgFlow || top.opener.to
即使我已经实现了上述方法 close(),Eclipse 仍向我显示上述错误。 代码如下: public void update_project(View view) { EditText c
在我的网络应用程序中,我广泛使用了数据库。 我有一个抽象的 servlet,所有需要数据库连接的 servlet 都继承自它。该抽象 servlet 创建一个数据库连接,调用必须由继承 servlet
我在这里看到很多答案都说要使用 close() 来销毁套接字,但我使用的指南来自 msdn让我使用 closesocket()。我想知道是否存在差异,是否有理由使用其中一种。 在这两种情况下,我都看到
我在 python 中使用 with 语句( PEP 343 ) 时遇到了一些问题,以便在上下文之后自动管理资源清理。特别是,with 语句 始终假定资源清理方法是 .close()。 IE。在下面的
在本地连接上调用 RTCPeerConnection.close() 时,我希望远程连接接收到 closed connectionstatechange 事件。 相反,几秒钟后出现disconnect
我正在使用 netty 3.6.6。 有人可以解释以下两个代码之间的区别吗? channel.close(); channel.write(ChannelBuffers.EMPTY_BUFFER).a
WebSocket.readyState可以是CONNECTING、OPEN、CLOSING或CLOSED。 CLOSING 和 CLOSED 状态有什么区别?为什么区分这两种状态很有用?我可以将 C
想象一下,您在 Python 中打开了某个文件(无论是用于读取、写入还是其他)。我刚刚注意到,当您想关闭该文件时,您可以输入: somefile.close() 或者您可以输入: somefile.c
我在我的应用程序的各种类和线程中打开、访问、写入等数据库。我有一个数据库 self.run_params["db"] 我在整个应用程序中都使用它来访问。 问题 1:我是否应该在每次访问后关闭光标? 问
我正在尝试创建一个 vanilla JavaScript 模态,当从 HTML 文件(或 JS 文件)实例化它时,它具有由用户自定义的能力。但是,在处理关闭模式的 close() 函数时,不是一次关闭
所以这可能是一个菜鸟类型的问题,但这就是我想知道的。 假设我有两个屏幕,第一个屏幕是 idk,例如 Screen1。假设用户在 Screen1 上点击了OK,这会将他们带到Screen2。 我目前正在
我是一名优秀的程序员,十分优秀!