D
Duncan EMmerson
I need to understand how sales data in different rows in
one table correlate to each other. The data is in the
following format:
week1 week2 week3 etc
Outlet 1 a b c
Outlet 2 d e f
outlet 3 h i j
I need to know whether sales in Outlet 1 correlates to
that in outlet 2 or 3 etc
I would like to create another table with the correlation
values in it like this:
outlet 1 outlet 2 outlet 3
Outlet 1 1 0.6 0.7
Outlet 2 0.6 1 0.3
Outlet 3 0.7 0.3 1
I think i must be able to do some kind of index match to
bring back the row of sales data into the correlate
function.
Any ideas? This could save me days work if it works!
one table correlate to each other. The data is in the
following format:
week1 week2 week3 etc
Outlet 1 a b c
Outlet 2 d e f
outlet 3 h i j
I need to know whether sales in Outlet 1 correlates to
that in outlet 2 or 3 etc
I would like to create another table with the correlation
values in it like this:
outlet 1 outlet 2 outlet 3
Outlet 1 1 0.6 0.7
Outlet 2 0.6 1 0.3
Outlet 3 0.7 0.3 1
I think i must be able to do some kind of index match to
bring back the row of sales data into the correlate
function.
Any ideas? This could save me days work if it works!