如何对矩阵中的所有值进行舍入?
我使用以下方法将所有相关性存储在矩阵中:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就像您的其他问题一样,使用您找到的函数 (
round
) :)例如:
Just as in your other question, use the function (
round
) you found :)For example: