Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set default value for NAs #76

Open
cortinah opened this issue Jun 28, 2024 · 2 comments
Open

Set default value for NAs #76

cortinah opened this issue Jun 28, 2024 · 2 comments

Comments

@cortinah
Copy link

Hello, thanks for this package. Currently any NA values in a data frame are written to excel as blank cells. This is not always the desired behavior. Would it be possible to add a parameter such as na_value, that would for example allow the Excel file to display NAs as a customized value? e.g. na_value="Not available". This is difficult to do in R when the column type is numeric for example. However, Excel columns can have both numeric and string values. thank you very much.

@jeroen
Copy link
Member

jeroen commented Jun 28, 2024

This is difficult to do in R when the column type is numeric for example.

What about converting the column to character before writing it to xlsx? Like so:

# Example data
df <- data.frame(x=c(1,2,NA,4))

# Convert x to character
df$x <- as.character(df$x)
df$x[is.na(df$x)] <- "Not available"

# Write to excel
writexl::write_xlsx(df, 'test.xlsx')

@cortinah
Copy link
Author

Thank you, yes, indeed, this is what I have been doing, but it would be nice to be able to do it from the call in write_xlsx so user doesn't have to modify the original data frame.

What if you still want to use the numeric attributes of the df? then you have to make a copy just for writing to excel. read_xlsx has the nice parameter (na = "") which allows you to interpret values that are being read as NAs. It would be great if analogous to that write_xlsx also had a (na="") parameter. This allows for cleaner scripting. thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants