> For the complete documentation index, see [llms.txt](https://docs.origami.tech/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.origami.tech/function/functions/remove-nan.md).

# Remove NaN

## <mark style="color:purple;">`remove_nan`</mark>(*list*\[*decimal*]) -> *list*\[*decimal*]

Returns list with dropped decimal(Nan)

<details>

<summary>Example:</summary>

<mark style="color:red;">`remove_nan([0.2, 0.1, Nan])`</mark>` ``→`` `<mark style="color:red;">`[0.2, 0.1]`</mark>

</details>
