Hi,
I'm looking for a way to cross classify data in DIAdem. I have two rows of data, Temperature and Lambda, which I would like to cross classify in given temperature and lambda bins. IE how often (frequency) is the temperature between 400-410 degrees at the same time as lambda is between 0.91-0.92 .. and so on for all possible combinations.
My english is a bit rusty so I think an example of how the data looks and how I would solve it in Excel looks:
Indata:
lambda Temp
0,920 850
1,000 700
1,000 810
1,100 840
1,000 840
0,980 890
0,970 890
1,000 790
0,950 800
0,400 950
0,400 790
0,700 800
1,020 800
intervals:
lambda temperature
0,9 800
0,95 810
1 820
1,05 830
1,1 840
1,15 850
1,2
Result:
In each cell in the matrix I use the SUMPRODUCT for the conditions, ex. lambda <0,9 and 820<T<=830. Also note that I want the values outside the boundaries to be counted in the lowest/highest values.