using Plots;
plot([Shape(df.x, df.y)], group=df.ID,fill_z=df.value)
This plots arbitrary shapes that are stored in a dataframe with x,y,ID,value columns.
using Plots;
plot([Shape(df.x, df.y)], group=df.ID,fill_z=df.value)
This plots arbitrary shapes that are stored in a dataframe with x,y,ID,value columns.