I have Query with 10 Measures I am able to draw correlation heat map in Python using below?
import pandas as pd import seaborn as sn import matplotlib as mt
df = pd.read_sql('select statement') sn.heatmap(df.corr(), annot=True) mt.pyplot.show()
How can I make similar correlation heat map in Tableau?