- numpy - matplotlib - seaborn
import numpy as np import matplotlib.pyplot as plt import seaborn as sns X = np.random.rand(10,10) sns.heatmap(X) plt