ismissing と NaN の違い ; データ解析欠損値データの扱い(4/1)
1 view (last 30 days)
Show older comments
ismissing と NaN の違いがいまいちはっきりとわかりません.
問題文の意味が理解できずにいます.
定義上、NaN 値は "not a number" (非数値) であるため、等号演算子では NaN 値を識別しません。
0 Comments
Accepted Answer
Hernia Baby
on 6 Oct 2021
普通の数字では等号演算子「==」で判定することができます
A = 1:10
idx = A == 5
しかしながらNaNの場合は数字として扱わないのでこの方法では判定できません
A(5) = NaN
idx = A == NaN
そこでismissingで判定するというわけです
idx = ismissing(A)
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!