How to plot (x,y,z) coordinates in the shape of a hexagonal grid?
问题 If for example, I have the following coordinates with corresponding colors which represent a hexagonal shaped grid of hexagons: coord = [[0,0,0],[0,1,-1],[-1,1,0],[-1,0,1],[0,-1,1],[1,-1,0],[1,0,-1]] colors = [["Green"],["Blue"],["Green"],["Green"],["Red"],["Green"],["Green"]] How can one plot this in Python so that the points on the plot retain that hexagonal shape? Additionally how can one represent the 'colors' list on the hexagon. Somewhat like this: Simple Hexagonal grid But the look