I've plotted a markov chain in R, but I dislike the rather hugh arrowheads that the plot-function is plotting. Is there a way to make the heads smaller?
library( markovchain )
transition.matrix <- matrix( data = c( 0.5, 0, 0, 0.5, 0.2, 0, 0, 0.8, 1 ),
nrow = 3, ncol = 3,
dimnames = list( c( "A", "B", "C" ), c( "A", "B", "C" ) ) )
transition.matrix <- new( "markovchain", transitionMatrix = transition.matrix )
print( transition.matrix )
plot( transition.matrix )