Learn R Programming

rMIDAS (version 1.0.0)

na_to_nan: Replace NA missing values with NaN

Description

Helper function to convert NA values in a data.frame to NaN. This ensures the correct conversion of missing values when reticulate converts R objects to their Python equivalent. See the reticulate package documentation on type conversions for more information.

Usage

na_to_nan(df)

Value

Data frame with NA values replaced with NaN values.

Arguments

df

Data frame, or object coercible to one.

Examples

Run this code
na_to_nan(data.frame(a = c(1,NA,0,0,NA,NA)))

Run the code above in your browser using DataLab