首页 > 解决方案 > 将数据着色器添加到 matplotlib 子图 - 位置参数错误

问题描述

我想使用数据着色器输出作为 plt 子图的输入。

我正在尝试运行此问题的答案中建议的代码: Add datashader image to matplotlib subplots

下面是代码:

from datashader.mpl_ext import DSArtist
import datashader as ds
import matplotlib.pyplot as plt
import matplotlib.colors as mcolors
import pandas as pd
import numpy as np

N = 10000
df = pd.DataFrame(np.random.random((N, 3)), columns = ['x','y', 'z'])

f, ax = plt.subplots(2, 2)
ax_r = ax.ravel()

da = DSArtist(ax_r[0], df, 'x', 'y', ds.mean('z'), norm = mcolors.LogNorm())
ax_r[0].add_artist(da)

ax_r[1].hist(df['x'])
ax_r[2].hist(df['y'])
ax_r[3].plot(df['z'])

plt.tight_layout()
plt.show()

我收到一个错误:

---> da = DSArtist(ax_r[0], df, 'x', 'y', ds.mean('z'), norm = mcolors.LogNorm()) 
TypeError: __init__() missing 7 required positional arguments: 'shade_hook', 'plot_width', 'plot_height', 'x_range', 'y_range', 'width_scale', and 'height_scale'

我尝试在此处查看 DSArtist 的源代码(https://github.com/holoviz/datashader/pull/200/files),但不太了解它。

如何解决错误?

谢谢!

标签: pythonmatplotlibdatashader

解决方案


推荐阅读