python - Plot multiple heatmap planes in 3D matplotlib plot -


i'm trying use matplotlib visualise continuous output of function takes 3 integers arguments. i've iterated through each point in 3d grid of inputs (like grid search in scikit-learn) 1, 2 , 3 on each axis, calculating function output each combination, i.e. calculate f(1,1,1), f(1,1,2), f(1,1,3), f(1,2,1) , on.

my question is, best way plot output? thought that, given small range of each input (the range 1-7, not 1-3, in actual data), plot ordinal series of heatmaps planes in 3d, so:

enter image description here

is possible matplotlib?

suggestions re. nicer ways visualisation welcome. this answer plots 'heatcube' but, answerer points out, it's tricky read.


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -