How can i split my y-axis in bar plot while plotting in R.
Sample data:
Name Freq
PRIM2 310
NBPF20 45
NBPF1 12
CD24 11
SEC22B 7
ZNF718 7
The code I am using to plot this:
d <- read.table("Sample.txt", header=TRUE)
barplot(d$Freq, names.arg=d$Name, col='red', cex.axis=0.8, cex.names=0.7, las=3)
Thank you