0

I've generated a network from a large set of fasta files. I've followed the instructions from this question. Although I've successfully plotted said network, there is allot of labels behind the pies. How can I disable these from appearing

plot(net, size = attr(net, "freq"), pie=ind.hap, fast = TRUE, legend=F, label=NULL, vertices.last=F)
legend('topleft', capitalize(colnames(ind.hap)), col=rainbow(ncol(ind.hap)), pch=20, cex=0.7)

Network

Community
  • 1
  • 1
Panchito
  • 337
  • 1
  • 3
  • 12

1 Answers1

0

There are a couple of other parameters that you seem to be aware of for that plot type, but the one you want is a logical:

label=False

You might also try

use.labels=False
Shawn Mehan
  • 4,513
  • 9
  • 31
  • 51