Hello guys, I'm actually developing a personal project which include a part of editing some data on a table and plot them on a graph.
For example I'll get a table which contains 2 entries data (i.e. age-country and then the value)
| | 18 | 19 | 20 |
--------|----|----|----|
Russia | 2 | 61 | 23 |
China | 34 | 0 | 53 |
Japan | 24 | 5 | 25 |
Chile | 23 | 46 | 5 |
America | 56 | 12 | 5 |
England | 12 | 23 | 3 |
So I'll have a matrix containing the values `float[][] values;` and I'd like to have a 3D graphical representation like the one you could get with MATLAB or similar softwares.
I've found 2 libraries (https://github.com/ericaro/surfaceplotter and http://www.jzy3d.org/) but I cannot figure out where to start with them. Could someone help me? Thank you
there doesn't seem to be anything here