Dear Statalist,
Here the data.
* Example generated by -dataex-. For more info, type help dataex
clear
input byte(ID networkingcapitalownersequity networkingcapitalotherliabilitie reservesownersequity totalassetsnetworkingcapital)
1 3 1 3 2
2 3 3 3 2
3 2 1 1 3
4 3 3 3 2
5 1 1 3 2
end
I would like to produce a graph where for each indicator and ID I assign a colour representing a degree of risk (see Table below). The idea is that for each ID (appearing on the X axis) and indicator (on the Y axis) I have a color representing low risk (1 in the table and data), medium risk (2) and high risk (3). In the graph I would like to use just colour coding, i.e. numbers should not appear in the graph. Ideally all the indicators should appear on the same graph as in the Table below.
I have been unable to find a code or thread that can help me. I would really appreciate your help on this.
Here the data.
* Example generated by -dataex-. For more info, type help dataex
clear
input byte(ID networkingcapitalownersequity networkingcapitalotherliabilitie reservesownersequity totalassetsnetworkingcapital)
1 3 1 3 2
2 3 3 3 2
3 2 1 1 3
4 3 3 3 2
5 1 1 3 2
end
I would like to produce a graph where for each indicator and ID I assign a colour representing a degree of risk (see Table below). The idea is that for each ID (appearing on the X axis) and indicator (on the Y axis) I have a color representing low risk (1 in the table and data), medium risk (2) and high risk (3). In the graph I would like to use just colour coding, i.e. numbers should not appear in the graph. Ideally all the indicators should appear on the same graph as in the Table below.
Net working Capital / Owener's Equity | 1 | 1 | 2 | 3 | 1 |
Reserves / Owners' Equity | 2 | 1 | 2 | 3 | 1 |
....... | 1 | 1 | 1 | 2 | 3 |
............ | 3 | 3 | 3 | 3 | 3 |
................... | |||||
1 | 2 | 3 | 4 | 5 |
I have been unable to find a code or thread that can help me. I would really appreciate your help on this.
Comment