I am trying to turn a matrix into a probability plot using R. I have done this before, but this particular set of data is contained in an 8x8 matrix, so it is fairly large and in turn contains a lot of arrows. In consequence, the arrows all overlap each other, and it is very hard to read. My code so far after inputting the matrix
library( markovchain )
transition.matrix <- new( "markovchain", transitionMatrix = transition.matrix )
plot( transition.matrix )
which gives me this result. Is there any way to spread the cases apart so the arrows aren't on top of one another? Thanks in advance!