Created
June 24, 2020 18:39
-
-
Save chasemc/f7e12148553d0d77fd7320db46549e09 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plot(protein_peak_dend$dendrogram ) | |
z<-sapply(protein_peak_data, function(x) x@mass[x@mass > 4000 & x@mass < 15000]) | |
z <- z[ match(labels(protein_peak_dend$dendrogram),labels(z))] | |
plot(1, xlim=c(0,861), ylim=c(4000,15000)) | |
for(i in seq_along(z)) points(z[[i]], x=rep(i, length(z[[i]])), col = rgb(red = 0, green = 0, blue = 0, alpha = 0.1), pch=16, cex=.5) |
Author
chasemc
commented
Jun 24, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment