使用一个列的数值作为热图的图表,另一个列的颜色作为表示。

huangapple go评论97阅读模式
英文:

Plot chart like heat map with values from one column and color from another column

问题

我有以下包含许多行、多个样本和3列的数据集。我需要绘制一个图表,它看起来像一个热图,但它不仅要填充颜色到当前位置,还要填充到前一个位置。

  1. Name position category
  2. Sample1 15500 1
  3. Sample1 15800 2
  4. Sample1 16200 2
  5. Sample1 17200 3
  6. Sample1 17400 3
  7. Sample1 17700 3
  8. Sample1 18300 2
  9. Sample1 20010 2
  10. Sample1 22120 1
  11. Sample1 30000 3
  12. Sample2 15880 1
  13. Sample2 16200 1
  14. Sample2 16900 3
  15. Sample2 18200 3
  16. Sample2 18500 2
  17. Sample2 20400 1
  18. Sample2 21300 2
  19. Sample2 24800 3
  20. Sample2 26000 1
  21. Sample2 30000 3

我首先将其转换为一个数据透视表:

  1. import pandas as pd
  2. sample_pivot = sample.pivot_table(columns="position", index="Name", values="category")

然后我使用plotly来绘制这个图表:

  1. import plotly.express as px
  2. fig = px.imshow(sample_pivot)
  3. fig.update_xaxes(range=[1, 35000])
  4. fig.show()

我得到了以下图表:

使用一个列的数值作为热图的图表,另一个列的颜色作为表示。

我需要修改上面的图表,以在位置之间填充颜色,如下所示,颜色填充将追溯到前一个位置并显示在图表上:

Sample 1 :
1-15500 --> 深蓝色
15501-16200 --> 橙红色
16201-17700 --> 黄色
17701-20010 --> 橙红色
20011-22120 --> 深蓝色
22121-30000 --> 黄色

英文:

I have the following dataset with many rows, multiple samples and 3 columns. I need to plot a graph which looks like a heatmap but it should fill the color not just for the position but also till previous position.

  1. Name position category
  2. Sample1 15500 1
  3. Sample1 15800 2
  4. Sample1 16200 2
  5. Sample1 17200 3
  6. Sample1 17400 3
  7. Sample1 17700 3
  8. Sample1 18300 2
  9. Sample1 20010 2
  10. Sample1 22120 1
  11. Sample1 30000 3
  12. Sample2 15880 1
  13. Sample2 16200 1
  14. Sample2 16900 3
  15. Sample2 18200 3
  16. Sample2 18500 2
  17. Sample2 20400 1
  18. Sample2 21300 2
  19. Sample2 24800 3
  20. Sample2 26000 1
  21. Sample2 30000 3

I first converted this to a pivot table

  1. import pandas as pd
  2. import numpy as np
  3. import plotly.express as px
  4. import plotly.graph_objects as go
  5. sample_pivot=sample.pivot_table(columns="position" , index= "Name", values="category")

Then i used plotly to chart this

  1. fig = px.imshow(sample_pivot)
  2. fig.update_xaxes(range=[1, 35000])
  3. fig.show()

I got the following chart

使用一个列的数值作为热图的图表,另一个列的颜色作为表示。

I need to modify above chart to fill the color in between the positions like below where the color filling will trace back to previous position and show up on the chart

  1. Sample 1 :
  2. 1-15500 --> Dark blue
  3. 15501-16200 --> orange red
  4. 16201-17700 --> yellow
  5. 17701-20010 --> orange red
  6. 20011-22120 --> Dark blue
  7. 22121-30000 --> yellow

答案1

得分: 0

一种我考虑用来生成我想要的内容的方法是以100为增量的数字,如100、200、300、400……直到30,000,然后用NaN填充空白,执行外连接以获取所有位置,包括增加的位置,并使用.bfill()方法填充并创建上面的图表。对此或任何更好的方法有什么建议吗?

英文:

One way i was thinking to generate what i wanted to get above is to have numbers in increments of 100 like 100,200,300,400 ... till 30,000 and fill blanks with Nan, perform outer join so that i have all positions including the incremented positions and use .bfill() method to fill and create above graph. Any suggestions on this or any better approach ?

答案2

得分: 0

以下是已翻译的内容:

  • 为了填充从1到下一个已知位置的区域,请插入相应的列

    1. sample_pivot.insert(0, 1, np.nan)
  • 使用 pandas.DataFrame.bfill 来填充缺失/NaN值

    1. sample_pivot.bfill(axis=1, inplace=True)

使用一个列的数值作为热图的图表,另一个列的颜色作为表示。

还请注意,由于在此情况下使用的底层跟踪是 plotly.graph_objects.Heatmap,您可以使用参数 connectgaps,尽管它不会完全符合您的要求,但您可能会对它的功能感兴趣。

英文:

You can do the following :

  • In order to fill the region from 1 to the next known position, insert the corresponding column
    1. sample_pivot.insert(0, 1, np.nan)
  • Fill missing/NaN values using pandas.DataFrame.bfill
    1. sample_pivot.bfill(axis=1, inplace=True)

使用一个列的数值作为热图的图表,另一个列的颜色作为表示。

Note also that since the underlying trace used in this case is a plotly.graph_objects.Heatmap, you could use the parameter connectgaps, although it won't do exactly what you want, it might be interesting for you to see what it does.

huangapple
  • 本文由 发表于 2023年6月19日 05:20:03
  • 转载请务必保留本文链接:https://go.coder-hub.com/76502568.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定