绘制上三角矩阵或下三角矩阵的热图

发布于 2024-11-26 21:18:29 字数 41 浏览 0 评论 0原文

任何人都可以建议一个函数来绘制 R 中上三角矩阵或下三角矩阵的热图吗

Can any body suggest a function to plot heat map for upper or lower triangular matrix in R

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千纸鹤 2024-12-03 21:18:29

执行此类操作的最基本方法是使用 ?image ,如下所示:

M <- matrix(runif(100),10,10)
M[lower.tri(M)] <- NA
image(1:10,1:10,M)

这将导致如下结果:

在此处输入图像描述

您还可以研究 ?heatmapgplots?heatmap.2 中的函数。使用 ggplot2geom_tile 执行此操作略有不同,但您可以找到一些示例来引导您完成该过程此处

The most basic way to do something like this would be using ?image as follows:

M <- matrix(runif(100),10,10)
M[lower.tri(M)] <- NA
image(1:10,1:10,M)

which would result in something like this:

enter image description here

You could also investigate the functions ?heatmap or in the gplots package ?heatmap.2. Doing this using ggplot2 using geom_tile is a little different but you can find some examples to walk you through the process here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文