- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一堆类似的曲线,例如 1000 个振幅、频率和相位略有不同的正弦波,它们看起来像下面这张图:
在上图中,每个正弦波的颜色来自标准的 pandas 颜色图;我想得到一个颜色与曲线“密度”相关的图。
我的第一个想法是模仿一个旧的示波器屏幕(搜索“持久模式”或查看 https://en.wikipedia.org/wiki/Eye_pattern 了解一些背景):
所以我为所有曲线设置了一种颜色:
但是剧情“平淡”,“密度”信息不是很好。
我真的很喜欢这样的情节:
在上图中,黄色表示 25 到 30 之间的多条曲线“通过”同一点(或同一像素)。我手工制作了上面的情节,我在问是否可以用 pandas 或 matplotlib 做得更好更直接。
上面的图是用这个程序做的,需要一段时间(十几秒),因为Bresenham的线算法没有优化。
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
np.random.seed(0)
# Code adapted from "Eye Diagram" by WarrenWeckesser at https://scipy-cookbook.readthedocs.io/items/EyeDiagram.html
def bres_segment_count_slow(x0, y0, x1, y1, grid):
"""Bresenham's algorithm.
The value of grid[x,y] is incremented for each x,y
in the line from (x0,y0) up to but not including (x1, y1).
"""
if np.any(np.isnan([x0,y0,x1,y1])):
return
nrows, ncols = grid.shape
dx = abs(x1 - x0)
dy = abs(y1 - y0)
sx = 0
if x0 < x1:
sx = 1
else:
sx = -1
sy = 0
if y0 < y1:
sy = 1
else:
sy = -1
err = dx - dy
while True:
# Note: this test is moved before setting
# the value, so we don't set the last point.
if x0 == x1 and y0 == y1:
break
if 0 <= x0 < nrows and 0 <= y0 < ncols:
grid[int(x0), int(y0)] += 1
e2 = 2 * err
if e2 > -dy:
err -= dy
x0 += sx
if e2 < dx:
err += dx
y0 += sy
def bres_curve_count_slow(y, x, grid):
for k in range(x.size - 1):
x0 = x[k]
y0 = y[k]
x1 = x[k+1]
y1 = y[k+1]
bres_segment_count_slow(x0, y0, x1, y1, grid)
def linear_scale(x,src_min,src_max,dst_min,dst_max):
return dst_min+(x-src_min)*(dst_max-dst_min)/(src_max-src_min)
grid_W = 1358
grid_H = 892
grid = np.zeros((grid_H, grid_W), dtype=np.int32)
t = np.linspace(-np.pi, np.pi, 201)
ys = []
for i in range(0,1000):
ys.append(np.random.normal(loc=1,scale=.05)*np.sin(np.random.normal(loc=1,scale=.01)*t+np.random.normal(loc=0,scale=.15)))
df = pd.DataFrame(ys).transpose()
fig, ax = plt.subplots(1)
df.plot(legend=False,ax=ax)
ax.figure.savefig('pandas.png',bbox_inches='tight', dpi=300)
fig, ax = plt.subplots(1)
df.plot(legend=False,ax=ax,color='#b6ffea')
ax.set_facecolor('#4b4f2c')
ax.figure.savefig('pandas_m.png',bbox_inches='tight', dpi=300)
tmin = np.nanmin(t)
tmax = np.nanmax(t)
ymin = np.nanmin(ys)
ymax = np.nanmax(ys)
t_d = np.round(linear_scale(t,tmin,tmax,0,grid_W))
ys_d = []
for y in ys:
ys_d.append(np.round(linear_scale(y,ymin,ymax,0,grid_H)))
for yd in ys_d:
bres_curve_count_slow(t_d, yd, grid)
plt.figure()
grid = grid.astype(np.float32)
grid[grid==0] = np.nan
plt.imshow(grid,origin='lower',cmap=plt.cm.hot)
ax = plt.gca()
ax.set_facecolor('k')
plt.colorbar()
plt.savefig("hand_made_persistence.png", bbox_inches='tight', dpi=300)
最佳答案
Matplotlib 的 hist2d
非常有效地计算了分箱。参数bins
可以设置x
和y
两个方向的bin数。
用细线绘制曲线并使用较小的 alpha 值组合它们是另一种方法。
from matplotlib import pyplot as plt
import numpy as np
t = np.linspace(-np.pi, np.pi, 200)
ys = [np.random.normal(1, .05) * np.sin(np.random.normal(1, .01) * t + np.random.normal(0, .15))
for i in range(0, 1000)]
fig, axs = plt.subplots(nrows=3, sharex=True)
axs[0].plot(t, np.array(ys).T)
axs[1].plot(t, np.array(ys).T, color='crimson', alpha=.1, lw=.1)
axs[2].hist2d(np.tile(t, len(ys)), np.ravel(ys), bins=(200, 50), cmap='inferno')
plt.show()
关于python - 如何在 pandas 中绘制类似 "eye diagram"的图?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61574246/
如果可能的话,我想使用外部PS眼动凸轮每秒节省30帧。 我不知道在哪里可以找到指南或代码本身,因为我很确定它应该在线。 任何帮助,将不胜感激。提前致谢! 最佳答案 因此,根据正在运行的OS,启动和运行
所以我终于让我的 php 数据库搜索正常运行,但我不知道如何格式化它以使其看起来更好。 目前我的回显码是 echo "".$results['lfname']."".$results['id'].$
Laugh eyes and lie face [ 会笑的眼和说谎的脸] My hand will only to lead me in the end will not separ
This question already has answers here: How does this one-hot vector conversion work? (2个答案) 3年前关闭。
我有一个 python 脚本,我想使用 Armadillo 用 C++ 重写。在 python 中我有一行 matrix = 1/(12*h)*(sparse.eye(num_points, k =
我的问题是,是否有人知道如何通过 openCV 使用 PS3 眼睛。 提前致谢。 最佳答案 只需安装适当的驱动程序(例如,here's Windows 版本)。之后 Ps3eye 将像普通网络摄像头一
问题是,给定任意一维向量y,将其扩展为具有n维度的d基向量。 展开的规则是:y中的每个元素是n*n单位矩阵中列的索引。 例如: y = [3, 0, 1] n = 4 由于n = 4,我们有4*4
这听起来像是一个愚蠢的问题,因为我尝试了一段时间来解决这个问题,但我不知道如何解决它。 我有两个名为 imagem.bmp 和 imagem2.bmp 的图像以及一个应该使用 gnome 之眼打开这两
我正在尝试在右侧添加一个眼睛图标。在我的原始代码中,它显示在右侧但没有响应,并且会在屏幕尺寸更改时移动。 下面是一个松散的实现。我希望它应该在输入字段在两个密码字段中结束之前显示在右侧。目前它显示但不
我很难把口音弄对,我相信大多数拉丁语都会遇到这种情况,就我而言,葡萄牙语 我有一个字符串作为参数,我必须得到第一个字母并将其大写!这在 ruby 中应该是微不足道的,但这里有一个问题: s1 =
我在一个文件夹中有 9025 个文件(从 img_00000.png 到 img_009024.png ),我不知道如何编写允许我从第一个文件开始打开一个图像查看器窗口并让我单击到的 python 代
我有一堆类似的曲线,例如 1000 个振幅、频率和相位略有不同的正弦波,它们看起来像下面这张图: 在上图中,每个正弦波的颜色来自标准的 pandas 颜色图;我想得到一个颜色与曲线“密度”相关的图。
我不明白这段代码出了什么问题 var sleepCheck = function(numHours) { if (sleepCheck >= 8) { return "You're
我已经用打开的 CV 设置了我的 ps3 眼睛,但是,当我调用函数 cvCaptureFromCAM(0) 时,它总是返回 null。我正在使用 these drivers对于我的 ps3 眼睛和 O
我问这个问题是我之前 question 的精简版.现在我有一张脸看着屏幕上的某个位置,还有双眼的注视坐标(俯仰和偏航)。让我们说 左眼 = [-0.06222888 -0.06577308] 右眼 =
在 SymPy 中,eye(5) 和 Identity(5) 有什么区别? 如果我有一个矩阵 X,我会看到 X + eye(5) 和 X + Identity(5) 给出不同的结果(后者不是矩阵)。
我正在做一个需要低分辨率和大约 110 fps 的项目。所以我买了 30 美元的 PlayStation eye,它在 240 分辨率下以 320 提供 120 fps。 我安装了以前版本的 maca
我看过 "Third Eye Crime" 的预告片. 如何实现蓝色视场锥体,使其形状根据障碍物发生变化? 我的尝试是转换光线直到出现障碍物,然后我用光线的终点绘制锥形。 我的方法的问题是圆锥体的精度
我正在使用 SceneKit。我创建了自己的相机并将其分配给场景,并且调整了它的 xFov 和 yFov。当我设置一个高于 50 的值时,开始出现一些失真。屏幕边缘附近的所有内容都被拉伸(stretc
int eye[3][3] = { { 1,0,0 }, { 0,1,0 }, { 0,0,1 } }; 有没有更短的初始化方法?它是如此规则,以至于必须有一种更智能的方法来初始化它,尤其
我是一名优秀的程序员,十分优秀!