- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试将交互式 WebAgg 绘图嵌入到 Tornado Web 应用程序中。该图由三个点和两条线段连接而成,可以移动这些点并重新绘制线段。 Tornado 应用程序启动并显示 WebAgg 图的初始状态,但单击这些点不会执行任何操作。
我尝试以相同的方式嵌入情节 this example嵌入一个情节。
我只是更换了
def create_figure():
"""
Creates a simple example figure.
"""
fig = Figure()
a = fig.add_subplot(111)
t = np.arange(0.0, 3.0, 0.01)
s = np.sin(2 * np.pi * t)
a.plot(t, s)
return fig
使用我的交互式 WebAgg 绘图代码
class InteractiveLine:
def __init__(self, points_list):
self.fig, self.ax = self.setup_axes()
self.tolerance = 10
self.xy = points_list
x_data = [pt[0] for pt in points_list]
y_data = [pt[1] for pt in points_list]
self.points = self.ax.scatter(
x_data, y_data, s=200, color='#39ff14',
picker=self.tolerance, zorder=1)
self.line = self.ax.plot(
x_data, y_data, ls='--', c='#666666',
zorder=0)
self.fig.canvas.mpl_connect('button_press_event', self.on_click)
def on_click(self, event):
contains, info = self.points.contains(event)
print(contains)
print(info)
if contains:
ind = info['ind'][0]
print("You clicked {}!".format(ind))
self.start_drag(ind)
def start_drag(self, ind):
self.drag_ind = ind
connect = self.fig.canvas.mpl_connect
cid1 = connect('motion_notify_event', self.drag_update)
cid2 = connect('button_release_event', self.end_drag)
self.drag_cids = [cid1, cid2]
self.on_press()
def drag_update(self, event):
self.xy[self.drag_ind] = [event.xdata, event.ydata]
self.points.set_offsets(self.xy)
self.ax.draw_artist(self.points)
self.fig.canvas.draw()
def end_drag(self, event):
"""End the binding of mouse motion to a particular point."""
self.redraw()
for cid in self.drag_cids:
self.fig.canvas.mpl_disconnect(cid)
def on_press(self):
self.line[0].set_alpha(.4)
def redraw(self):
x_data,y_data = self.line[0].get_data()
pt_x,pt_y = self.xy[self.drag_ind]
x_data[self.drag_ind] = pt_x
y_data[self.drag_ind] = pt_y
self.line[0].set_data(x_data,y_data)
self.line[0].set_alpha(1)
self.fig.canvas.draw()
def setup_axes(self):
fig, ax = plt.subplots()
return fig, ax
def show(self):
plt.show()
完整代码如下:
import io
try:
import tornado
except ImportError:
raise RuntimeError("This example requires tornado.")
import tornado.web
import tornado.httpserver
import tornado.ioloop
import tornado.websocket
from matplotlib.backends.backend_webagg_core import (
FigureManagerWebAgg, new_figure_manager_given_figure)
from matplotlib.figure import Figure
import matplotlib.pyplot as plt
import matplotlib
import numpy as np
import json
class InteractiveLine:
def __init__(self, points_list):
self.fig, self.ax = self.setup_axes()
self.tolerance = 10
self.xy = points_list
x_data = [pt[0] for pt in points_list]
y_data = [pt[1] for pt in points_list]
self.points = self.ax.scatter(
x_data, y_data, s=200, color='#39ff14',
picker=self.tolerance, zorder=1)
self.line = self.ax.plot(
x_data, y_data, ls='--', c='#666666',
zorder=0)
self.fig.canvas.mpl_connect('button_press_event', self.on_click)
def on_click(self, event):
contains, info = self.points.contains(event)
print(contains)
print(info)
if contains:
ind = info['ind'][0]
print("You clicked {}!".format(ind))
self.start_drag(ind)
def start_drag(self, ind):
self.drag_ind = ind
connect = self.fig.canvas.mpl_connect
cid1 = connect('motion_notify_event', self.drag_update)
cid2 = connect('button_release_event', self.end_drag)
self.drag_cids = [cid1, cid2]
self.on_press()
def drag_update(self, event):
self.xy[self.drag_ind] = [event.xdata, event.ydata]
self.points.set_offsets(self.xy)
self.ax.draw_artist(self.points)
self.fig.canvas.draw()
def end_drag(self, event):
"""End the binding of mouse motion to a particular point."""
self.redraw()
for cid in self.drag_cids:
self.fig.canvas.mpl_disconnect(cid)
def on_press(self):
self.line[0].set_alpha(.4)
def redraw(self):
x_data,y_data = self.line[0].get_data()
pt_x,pt_y = self.xy[self.drag_ind]
x_data[self.drag_ind] = pt_x
y_data[self.drag_ind] = pt_y
self.line[0].set_data(x_data,y_data)
self.line[0].set_alpha(1)
self.fig.canvas.draw()
def setup_axes(self):
fig, ax = plt.subplots()
return fig, ax
def show(self):
plt.show()
# The following is the content of the web page. You would normally
# generate this using some sort of template facility in your web
# framework, but here we just use Python string formatting.
html_content = """
<html>
<head>
<!-- TODO: There should be a way to include all of the required javascript
and CSS so matplotlib can add to the set in the future if it
needs to. -->
<link rel="stylesheet" href="_static/css/page.css" type="text/css">
<link rel="stylesheet" href="_static/css/boilerplate.css" type="text/css" />
<link rel="stylesheet" href="_static/css/fbm.css" type="text/css" />
<link rel="stylesheet" href="_static/jquery-ui-1.12.1/jquery-ui.min.css" >
<script src="_static/jquery-ui-1.12.1/external/jquery/jquery.js"></script>
<script src="_static/jquery-ui-1.12.1/jquery-ui.min.js"></script>
<script src="mpl.js"></script>
<script>
/* This is a callback that is called when the user saves
(downloads) a file. Its purpose is really to map from a
figure and file format to a url in the application. */
function ondownload(figure, format) {
window.open('download.' + format, '_blank');
};
$(document).ready(
function() {
/* It is up to the application to provide a websocket that the figure
will use to communicate to the server. This websocket object can
also be a "fake" websocket that underneath multiplexes messages
from multiple figures, if necessary. */
var websocket_type = mpl.get_websocket_type();
var websocket = new websocket_type("%(ws_uri)sws");
// mpl.figure creates a new figure on the webpage.
var fig = new mpl.figure(
// A unique numeric identifier for the figure
%(fig_id)s,
// A websocket object (or something that behaves like one)
websocket,
// A function called when a file type is selected for download
ondownload,
// The HTML element in which to place the figure
$('div#figure'));
}
);
</script>
<title>matplotlib</title>
</head>
<body>
<div id="figure">
</div>
</body>
</html>
"""
class MyApplication(tornado.web.Application):
class MainPage(tornado.web.RequestHandler):
"""
Serves the main HTML page.
"""
def get(self):
manager = self.application.manager
ws_uri = "ws://{req.host}/".format(req=self.request)
content = html_content % {
"ws_uri": ws_uri, "fig_id": manager.num}
self.write(content)
class MplJs(tornado.web.RequestHandler):
"""
Serves the generated matplotlib javascript file. The content
is dynamically generated based on which toolbar functions the
user has defined. Call `FigureManagerWebAgg` to get its
content.
"""
def get(self):
self.set_header('Content-Type', 'application/javascript')
js_content = FigureManagerWebAgg.get_javascript()
self.write(js_content)
class Download(tornado.web.RequestHandler):
"""
Handles downloading of the figure in various file formats.
"""
def get(self, fmt):
manager = self.application.manager
mimetypes = {
'ps': 'application/postscript',
'eps': 'application/postscript',
'pdf': 'application/pdf',
'svg': 'image/svg+xml',
'png': 'image/png',
'jpeg': 'image/jpeg',
'tif': 'image/tiff',
'emf': 'application/emf'
}
self.set_header('Content-Type', mimetypes.get(fmt, 'binary'))
buff = io.BytesIO()
manager.canvas.figure.savefig(buff, format=fmt)
self.write(buff.getvalue())
class WebSocket(tornado.websocket.WebSocketHandler):
"""
A websocket for interactive communication between the plot in
the browser and the server.
In addition to the methods required by tornado, it is required to
have two callback methods:
- ``send_json(json_content)`` is called by matplotlib when
it needs to send json to the browser. `json_content` is
a JSON tree (Python dictionary), and it is the responsibility
of this implementation to encode it as a string to send over
the socket.
- ``send_binary(blob)`` is called to send binary image data
to the browser.
"""
supports_binary = True
def open(self):
# Register the websocket with the FigureManager.
manager = self.application.manager
manager.add_web_socket(self)
if hasattr(self, 'set_nodelay'):
self.set_nodelay(True)
def on_close(self):
# When the socket is closed, deregister the websocket with
# the FigureManager.
manager = self.application.manager
manager.remove_web_socket(self)
def on_message(self, message):
# The 'supports_binary' message is relevant to the
# websocket itself. The other messages get passed along
# to matplotlib as-is.
# Every message has a "type" and a "figure_id".
message = json.loads(message)
if message['type'] == 'supports_binary':
self.supports_binary = message['value']
else:
manager = self.application.manager
manager.handle_json(message)
def send_json(self, content):
self.write_message(json.dumps(content))
def send_binary(self, blob):
if self.supports_binary:
self.write_message(blob, binary=True)
else:
data_uri = "data:image/png;base64,{0}".format(
blob.encode('base64').replace('\n', ''))
self.write_message(data_uri)
def __init__(self, figure):
self.figure = figure
self.manager = new_figure_manager_given_figure(id(figure), figure)
super().__init__([
# Static files for the CSS and JS
(r'/_static/(.*)',
tornado.web.StaticFileHandler,
{'path': FigureManagerWebAgg.get_static_file_path()}),
# The page that contains all of the pieces
('/', self.MainPage),
('/mpl.js', self.MplJs),
# Sends images and events to the browser, and receives
# events from the browser
('/ws', self.WebSocket),
# Handles the downloading (i.e., saving) of static images
(r'/download.([a-z0-9.]+)', self.Download),
])
if __name__ == "__main__":
point_coords = [[.75, .75],
[1, 1],
[1.25, .125]]
il = InteractiveLine(point_coords)
application = MyApplication(il.fig)
http_server = tornado.httpserver.HTTPServer(application)
http_server.listen(8080)
print("http://127.0.0.1:8080/")
print("Press Ctrl+C to quit")
tornado.ioloop.IOLoop.instance().start()
当我使用时,绘图按预期工作
InteractiveLine(point_coords).show()
我知道 .show() 方法也使用 Tornado,但我不确定如何获得与编写我自己的 Tornado 应用程序的 .show() 相同的结果。
最佳答案
我成功了!我更换了线路
self.manager = new_figure_manager_given_figure(id(figure), figure)
与
self.manager = self.figure.canvas.manager
我还明确告诉 matplotlib 使用 webagg:
matplotlib.use('webagg')
我认为创建一个新的图形管理器会覆盖事件连接,因此当图形收到鼠标事件时什么也没有发生。
关于python - 将交互式 WebAgg 绘图嵌入 Tornado 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57564536/
我正在尝试编写一个函数来制作绘图并将其自动保存到文件中。 我努力用它来动态地做的技巧[plotname=varname & filename=varname &], 并使其与从循环中调用它兼容。 #
有人可以帮助我如何在绘图条形图中添加“下拉”菜单。 我在以下链接 ( https://plot.ly/python/v3/dropdowns/ ) 上找到了一些信息,但我正在努力调整代码,因此下拉选项
我不确切知道如何表达这一点,但我本质上希望根据其他数据之前的列值将数据分组为 Excel 图的系列。例如: size weight apple 3 35 orange 4
我正在为出版物创建图表并希望它们具有相同的字体大小。 当我用多图创建图形时,字体大小会减小,即使我没有更改tiff() 分辨率或pointsize 参数。我根据最终适合的地 block 数量增加了图形
我用 glm::perspective(80.0f, 4.0f/3.0f, 1.0f, 120.0f);并乘以 glm::mat4 view = glm::lookAt( glm::vec3(
我在 Shiny UI 中有一个情节。如果我更改任何输入参数并且通过 react 性图将会改变。但是让我们考虑以下情况:- Shiny UI 中的绘图可以说股票的日内价格变动。为此,您查询一些实时数据
我对 R 有点陌生。我在以下两个线程中跟踪并实现了结果: http://tolstoy.newcastle.edu.au/R/e17/help/12/03/7984.html http://lukem
我想在 WPF 控件中使用 GDI+ 绘图。 最佳答案 有多种方法可以做到这一点,最简单的方法是锁定您使用 GDI 操作的位图,获取像素缓冲区(从锁定中获取的 BitmapData 中的 Scan0
如何在以下取自其网站的绘图示例中隐藏颜色条? df % layout(title = '2014 Global GDPSource:CIA World Factbook',
我有两列数据,X 和 Y,每个条目在两个向量的小数点后都有 4 位数据。 当我使用 plot(x,y) 绘制简单图时,轴上显示的数据精确到小数点后两位。如何在两个轴上将其更改为小数点后 4 位精度?
我目前正在使用 Canvas 处理 JavaFX-Drawing-Application。在 GraphicsContext 的帮助下,我使用 beginPath() 和 lineTo() 方法绘制线
如果这个问题已经得到解答,但我无法找到我需要的东西,我提前道歉。我想从名为 data1.dat、data2.dat 的文件中绘制一些结果......我设法通过循环导入数据,但我无法使用循环绘制结果。仅
我的 pandas 数据框中有一个功能,可以(可能)具有多个级别。我可以使用以下方法获得独特的级别: reasons = df["Reason"].unique() 我可以通过执行以下操作在单个图表上
我在 Ubuntu 14 和 Windows 7(均为 64 位)中用 Python 绘制结果时遇到问题。作为一个简单的比较,我做了: from tvb.simulator.lab import *
以下代码相当简单 - 它用随机选择的像素填充设计表面 - 没什么特别的(暂时忽略第二种方法中的 XXXXXXX)。 private void PaintBackground() { Rando
我正在尝试制作一个绘制函数图形的 swing 应用程序(现在很简单,例如 x+2)但我在根据屏幕坐标制作我的点的数学坐标时遇到问题。我希望它在我的图表中简单地画一条从 P1(0,1) 到 P2(1,2
编辑 4:问题的新格式 背景:我有一个扩展 JFrame 的类 Window,在 JFrame 中我有一个 Canvas 。我向 Canvas 添加自定义对象。这个对象的唯一目的(为了争论)是在 Ca
我需要为即将到来的锦标赛标记阶梯,但我找不到任何方法来语义标记它。到目前为止我看到的唯一方法是 mark it up as a table ,我想不惜一切代价避免这种情况。 有什么想法吗? 最佳答案
我目前正在为一个小型 uC 项目编写 UI。在计算垂直线的位置时遇到一些问题。这个想法是将红线沿 x 轴移动到矩形的末端。 使用无限旋转编码器递增的值,范围为 0 到 800,增量为 1。矩形的左侧是
我正在尝试绘制光分布图。我想准确地执行此问题的第一步所要求的:Statistical analysis on Bell shaped (Gaussian) curve . 现在我有一组值。我希望数组元
我是一名优秀的程序员,十分优秀!