Data Visualization from Dat file
Dear all,
I have .dat file having four columns which is for x, y, z axis, and u
i.e. (x,y,z,u)
I want to plot a heatmap/ contourplot/ 3d plot which include (x,y,z) vs u through pyplot.
kindly suggest.
2 answers ( 0 marked as helpful)
Hi Sumant,
thanks for reaching out!
If you'd like to visualize your data using a heatmap, you could use a seaborn heatmap. Seaborn works on top of matplotlib and takes care of some details, you'd have to handle manually in matplotlib.
So, if you're use pandas for your data, you can compute the correlation with corr() and then plot the results using a sns.heatmap()
Best,
Eli
Hi Eli,
Thanks for your answer. I would like to ask one more question.
How can we differentiate an output value (coming from a deep neural network) in TensorFlow?
Thanks.
Sumant