gpt4 book ai didi

r - R 在内部如何表示 NA?

转载 作者:行者123 更新时间:2023-12-02 00:59:24 26 4
gpt4 key购买 nike

R 似乎支持 float 组中的高效 NA 值。它在内部如何表示?

我(可能有缺陷)的理解是,现代 CPU 可以在硬件中执行浮点计算,包括有效处理 Inf、-Inf 和 NaN 值。 NA 如何适应这一点,如何在不影响性能的情况下实现它?

最佳答案

R 使用为 IEEE floats 定义的 NaN 值代表 NA_real_InfNA。我们可以使用一个简单的 C++ 函数来明确这一点:

Rcpp::cppFunction('void print_hex(double x) {
uint64_t y;
static_assert(sizeof x == sizeof y, "Size does not match!");
std::memcpy(&y, &x, sizeof y);
Rcpp::Rcout << std::hex << y << std::endl;
}', plugins = "cpp11", includes = "#include <cstdint>")
print_hex(NA_real_)
#> 7ff80000000007a2
print_hex(Inf)
#> 7ff0000000000000
print_hex(-Inf)
#> fff0000000000000

指数(第 13 位到第 2 位)全为 1。这是 IEEE NaN 的定义。但是对于 Inf 尾数全为零,而对于 NA_real_ 则不是这种情况。这里有一些source code references .

关于r - R 在内部如何表示 NA?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51684861/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com