Coder Social home page Coder Social logo

Set default value for NAs about writexl HOT 2 OPEN

cortinah avatar cortinah commented on July 29, 2024
Set default value for NAs

from writexl.

Comments (2)

jeroen avatar jeroen commented on July 29, 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')

from writexl.

cortinah avatar cortinah commented on July 29, 2024

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!

from writexl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.