如何对矩阵中的所有值进行舍入?

发布于 2024-10-27 13:24:15 字数 175 浏览 1 评论 0原文

我使用以下方法将所有相关性存储在矩阵中:

corrs <- cor(dataset, use="pairwise.complete.obs")

但现在我想将值四舍五入到逗号后的两位数。我怎样才能做到这一点?我刚刚找到了一个圆形函数,但不知道如何将其应用于所有值。

I use the following method to store all my correlations in a matrix:

corrs <- cor(dataset, use="pairwise.complete.obs")

But now I'd like to round the values to two digits after the comma. How can I do that? I just found a round function but don't know how to apply it to all values.

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

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

发布评论

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

评论(1

依 靠 2024-11-03 13:24:15

就像您的其他问题一样,使用您找到的函数 (round) :)

corrs <- round(cor(dataset, use="pairwise.complete.obs"), 2)

例如:

> round(cor(cars),2)
      speed dist
speed  1.00 0.81
dist   0.81 1.00

Just as in your other question, use the function (round) you found :)

corrs <- round(cor(dataset, use="pairwise.complete.obs"), 2)

For example:

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