Displaying 1 result from an estimated 1 matches for "no_blast_hits".
2012 Dec 16
3
xlim/ylim problem
...diately I got a problem.
Here's my script:
setwd("C:/Users/Tom/Eigene Tools/Programming/R/Data")
blast_hits<-read.table("blastHit_covLenght.txt", header=T)
blast_hits <- as.matrix(blast_hits)
numerical1<-data.matrix(blast_hits, rownames.force = NA)
table_no_blast_hits<-read.table("noBlastHits.txt", header=T)
no_blast_hits <- as.matrix(table_no_blast_hits)
numerical2<-data.matrix(no_blast_hits, rownames.force = NA)
All<-merge(numerical1, numerical2, all=TRUE)
library(hexbin)
bin<-hexbin(All, xbins=100)
# The next line works pr...