This is taking over 4s to run, which seems excessively large for such small dataset: ``` import time import numpy as np import pandas as pd import plotly.figure_factory as ff dfi = pd.DataFrame(np.random.rand(3, 6)) t0 = time.time() fig = ff.create_annotated_heatmap( z=dfi.values, x=dfi.columns.tolist(), y=dfi.index.tolist(), annotation_text=dfi.round(2).values, ) print(f'elapsed time {time.time()-t0:.3f} s') ```