ismissing と NaN の違い ; データ解析欠損値データの扱い(4/1)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
佳奈子 浜口
el 6 de Oct. de 2021
Comentada: 佳奈子 浜口
el 7 de Oct. de 2021
ismissing と NaN の違いがいまいちはっきりとわかりません.
問題文の意味が理解できずにいます.
定義上、NaN 値は "not a number" (非数値) であるため、等号演算子では NaN 値を識別しません。
0 comentarios
Respuesta aceptada
Hernia Baby
el 6 de Oct. de 2021
普通の数字では等号演算子「==」で判定することができます
A = 1:10
idx = A == 5
しかしながらNaNの場合は数字として扱わないのでこの方法では判定できません
A(5) = NaN
idx = A == NaN
そこでismissingで判定するというわけです
idx = ismissing(A)
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!