将datashader添加到matplotlib子地块位置参数错误

2024-06-28 19:05:58 发布

您现在位置:Python中文网/ 问答频道 /正文

我想使用datashader输出作为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),但没有完全理解它

如何解决错误

谢谢


Tags: 代码importdfplotmatplotlibasdsplt