ObservedObserver / viz-gpt

Make contextual data visualization with Chat Interface from tabular datasets. AI data visualization.
https://vizgpt.ai
Other
583 stars 66 forks source link

plot heatmap not work well #6

Closed Liripo closed 1 year ago

Liripo commented 1 year ago

image My data is: image

ObservedObserver commented 1 year ago

This is not tabular data for the heatmap. I understand you want to make a heatmap based on a matrix, but you need to transform the matrix into tabular data first.

example:

from,to,value
mpg,mpg,1
mpg,cyl,-0.852
...

Then you can draw this heatmap where x-axis is from and y-axis is to and color is value.

Liripo commented 1 year ago

Thank you,I see.