I have some data in a matrix that I would like to display as a 3D bar chart (with the "floor dimensions" representing rows and columns of the matrix, and bar height representing values. All values are positive so let's say my matrix is something like:
A <- matrix(rnorm(100)^2, ncol=10, nrow=10)
How could I accomplish that? I know a heatmap could be a valid alternative but unfortunatelly it's not up to me to choose the plot format.
As posted in the comments by Stéphane Laurent (merci beaucoup!), the result I am looking for would look close to this (maybe with a different perspective, but that's it):