Is there a way to reverse the order of the y axis in heatmap of plotly
问题 So I have hours = [x for x in range(7,18)] columns = [1, 2, 3, 4, 5] matrixDatos = [[0,1,0,1,0], [0,1,0,1,1], [2,3,2,3,2], [2,3,2,3,3], [4,5,4,5,4], [4,5,4,5,5], [6,7,6,7,6], [6,7,6,7,7], [8,9,8,9,8], [8,9,8,9,8] ] table = ff.create_table(matrixDatos) fig = ff.create_annotated_heatmap(matrixDatos, x=columns, y=hours, colorscale='Viridis') But it prints the heatmap with the y axis from 18 to 7 is there a way to print it from 7 to 18? 回答1: Hi I tried the code provided, I was getting an error