This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.
When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
library(gsheet)
a<-gsheet2tbl('https://docs.google.com/spreadsheets/d/1MUPsoYsxHwoQFEjsq_XlTvxAK6uA0QyuboACvMg2pVo/pubhtml')
## Warning: 'rvest::html' is deprecated.
## Use 'read_html' instead.
## See help("Deprecated")
b<-unlist(a[,1])
rownames(a)<-b
a$id<-NULL
library(gplots)
##
## Attaching package: 'gplots'
##
## The following object is masked from 'package:stats':
##
## lowess
heatmap.2(as.matrix(a))
heatmap.2(as.matrix(a),scale="row")
heatmap.2(as.matrix(a),scale="row",col=bluered(256))
heatmap.2(as.matrix(a),scale="row",col=bluered(256),trace="none")
heatmap.2(as.matrix(a),scale="row",col=bluered(256),trace="none",labRow=NA)
heatmap.2(as.matrix(a),scale="row",col=bluered(256),trace="none",labRow=NA, key=F)
density.info: character string indicating whether to superimpose a ‘histogram’, a ‘density’ plot, or no plot (‘none’) on the color-key.
heatmap.2(as.matrix(a),scale="row",col=bluered(256),trace="none",labRow=NA,density.info="none",)