I have the following table:
A B C
A 0 6 50
B 63 0 52
C 34 9 0
Where the row=A, column=B shows the count of the transitions from A to B.
I can easily plot this using the Gmisc package via:
transitionPlot(temp)
which gives me a nice plot with arrows from the states, where arrow thickness corresponds to the count proportions.
However, even digging through the documentation, I haven't really found a way to directly label the lines with the actual count information. I feel like this should be possible, so was wondering if anyone had any suggestions, either for this particular package, or if you have another package recommendation.
Thanks!