I have this Pandas table:
       Type    A    B    C   AB   AC   BC  ABC  
0  mean(+1)  NaN  NaN  NaN  NaN  NaN  NaN  NaN   
1  mean(-1)  NaN  NaN  NaN  NaN  NaN  NaN  NaN                 
2     slope  NaN  NaN  NaN  NaN  NaN  NaN  NaN  
considering "mean(+1)" as another column with its header name as "Type" in a different column. and "ABC" as a column header, so how do I write to the position in the coordinates [mean(+1), ABC]?
 
    