#Dataframe
Netzwerkgraph <- graph.data.frame(Datensatz[,1:3], directed = TRUE)
#vectors
actors<-Datensatz$Von
relations<-Datensatz$Nach
weight<-Datensatz$Nachrichten
plot(Netzwerkgraph,vertex.color="lightblue", edge.arrow.size=0.5, edge.lty=1,arrow.mode=3, edge.label=weight, edge.label.cex=0.4)
Network Analysis: (https://i.stack.imgur.com/nEVCi.png)
I would like to avoid the double arrows at the end of some edges. I would like to see, instead, two different edges. Also I want the labeling of the arrows to be legible and not overlapping

