Hello, I have created a sankey diagram using ggalluvial package, the pic as below, but you can see that the text on y is too small to see it clearly, so I want to Increase the y-axis ratio in order to make the words more clearly. if only increase font size, it will overlap or it will reduce the display of many countries' names because I add the check_overlap = TRUE, so How to change the ratio of y , or can it change the ratio in ggalluvia package, could you please help me?
my code is
mydata_alluvia<-as.data.frame(mydata)
is_alluvia_form(mydata_alluvia,weight = "FDI.changes")
ggplot(as.data.frame(mydata_alluvia),aes(y=FDI.changes,axis1=Primary.sender,axis2=Target.state))+
geom_alluvium(aes(fill=Episodes),width=0)+
geom_stratum(width=1/8,fill="white",color="grey")+
geom_text(stat="stratum",label.strata=TRUE,size=1.5,check_overlap = TRUE)+
scale_x_discrete(limits=c("Primary sender","Target state"),expand=c(.05,.05))+
ggtitle("Financial Sanctions during 1970-2017")