使用python处理96孔板中的数据标签

时间:2014-05-17 13:40:30

标签: python pandas

我确实有来自96孔板(主要是excel)的数据:

96孔板,由http://www.cellsignet.com提供示意图:

http://www.cellsignet.com/media/plates/96.jpg

在每个单元格中,我们可以进行一些实验并从中读取值,数据如下:

    1    2    3    4    .    . 
A   9.1  8.7  5.6  4.5
B   8.7  8.5  5.4  4.3
C   4.3  4.5  7.6  6.7
D   4.1  6.0  7.0  6.1
.

我也有包含样本名称的excel文件:

    1    2    3    4    .    . 
A   l1   l2   l3   l4 
B   l1   l2   l3   l4
C   ds1  ds2  ds3  ds4
D   ds1  ds2  ds3  ds4
.

重复的条目是两个井,加载了相同的样本。

我想读取数据(没问题)并将标签分配给数据点并根据标签对数据进行分组。在pandas中,我可以读取数据并根据列和行标题对其进行分组。但是我如何根据样本名称进行分组?

1 个答案:

答案 0 :(得分:0)

我建议只用两列制作一个DataFrame,一列存储名称,另一列存储读数。

In [20]:

print data_df
print name_df
     1    2    3    4
A  9.1  8.7  5.6  4.5
B  8.7  8.5  5.4  4.3
C  4.3  4.5  7.6  6.7
D  4.1  6.0  7.0  6.1

[4 rows x 4 columns]
     1    2    3    4
A   l1   l2   l3   l4
B   l1   l2   l3   l4
C  ds1  ds2  ds3  ds4
D  ds1  ds2  ds3  ds4

[4 rows x 4 columns]
In [21]:

final_df=pd.DataFrame({'Name':name_df.values.ravel(), 'Reading':data_df.values.ravel()})
#if you have additional readings, i.e. from a different assay,
#from a different wavelength, add them there, as:
#'OTHER_Reading':OTHER_data_df.values.ravel()
print final_df
   Name  Reading
0    l1      9.1
1    l2      8.7
2    l3      5.6
3    l4      4.5
4    l1      8.7
5    l2      8.5
6    l3      5.4
7    l4      4.3
8   ds1      4.3
9   ds2      4.5
10  ds3      7.6
11  ds4      6.7
12  ds1      4.1
13  ds2      6.0
14  ds3      7.0
15  ds4      6.1

[16 rows x 2 columns]

通过这种方式,您可以轻松地进行一些计算,例如:

In [22]:

print final_df.groupby('Name').mean()
      Reading
Name         
ds1      4.20
ds2      5.25
ds3      7.30
ds4      6.40
l1       8.90
l2       8.60
l3       5.50
l4       4.40

[8 rows x 1 columns]