Last answered:

10 Apr 2020

Posted on:

06 Apr 2020

0

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)
Instructor
Posted on:

10 Apr 2020

0

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

Posted on:

10 Apr 2020

0
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

Submit an answer