Как я могу создать тепловую карту в заданных точках x и y со значениями z?Python

Программы на Python
Anonymous
Как я могу создать тепловую карту в заданных точках x и y со значениями z?

Сообщение Anonymous »


I am attempting to make a heat map for the angle of detection at given x and y values scanned from an instrument. I currently have a list of x points, y points, and the corresponding angle for that (x, y) pair.

My data currently looks like this:

x_points = [-0.135758, -0.133424, -0.133535, -0.133645, -0.133757...] y_points = [0.131015, 0.127845, 0.127903, 0.127963, 0.128011...] philist = [-17.101448168993848, -33.08916344731352, -1.8235472999129623, -12.288914556808527, 34.544133945256874...] I have tried different methods but haven't gotten any success, does anyone know the best way to go about this?


Источник: https://stackoverflow.com/questions/780 ... lues-for-z

Вернуться в «Python»