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:
is possible matplotlib?
suggestions re. nicer ways visualisation welcome. this answer plots 'heatcube' but, answerer points out, it's tricky read.
Comments
Post a Comment