Существует ли простой способ создания цилиндрической трехмерной гистограммы с использованием Python Matplotlib, возможно, с использованием Patch3DCollection или Poly3DCollection?
Я понимаю, что bar3d возвращает коллекцию Patch3DCollection, такую что:
bar3d(x, y, z, dx, dy, dz, color=None, zsort='average', *args, **kwargs)
x = x coordinates of each bar
y = y coordinates of each bar
z = z coordinates of each bar
dx = width of each bar
dy = depth of each bar
dz = height of each bar
Есть ли способ построить цилиндрические стержни, где:
x = x coordinates of each bar
y = y coordinates of each bar
z = z coordinates of each bar
dr = radius of each bar
dz = height of each bar
Я буду работать над решением, но любая помощь приветствуется.