绘制上三角矩阵或下三角矩阵的热图
任何人都可以建议一个函数来绘制 R 中上三角矩阵或下三角矩阵的热图吗
Can any body suggest a function to plot heat map for upper or lower triangular matrix in R
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
执行此类操作的最基本方法是使用
?image
,如下所示:这将导致如下结果:
您还可以研究
?heatmap
或gplots
包?heatmap.2
中的函数。使用ggplot2
和geom_tile
执行此操作略有不同,但您可以找到一些示例来引导您完成该过程此处。The most basic way to do something like this would be using
?image
as follows:which would result in something like this:
You could also investigate the functions
?heatmap
or in thegplots
package?heatmap.2
. Doing this usingggplot2
usinggeom_tile
is a little different but you can find some examples to walk you through the process here.