Git Product home page Git Product logo

Comments (5)

jeroen avatar jeroen commented on July 3, 2024 3

writexl is behaving as expected here, it gives you an error when the string cannot be converted.

It is up to you to prepare the data so that it can be written to excel. You could use nchar() on the columns and either truncate or replace the cells that are too big. It would be dangerous if writexl would do this because it leads to data loss.

from writexl.

jeroen avatar jeroen commented on July 3, 2024

Can you please include example code?

from writexl.

zifeng9527 avatar zifeng9527 commented on July 3, 2024

library(writexl)

c0 <- c(strrep("a",1),"b")
c1 <- c(strrep("a",32767),"b")
c2 <- c(strrep("a",32768),"b")

data1 <- c()
data2 <- c()

data1$V1 <- as.data.frame(c0)
data1$V2 <- as.data.frame(c1)

data2$V1 <- as.data.frame(c0)
data2$V2 <- as.data.frame(c2)

data1 <- as.data.frame(data1)
data2 <- as.data.frame(data2)

write_xlsx(list("sheet1"=data1, "sheet2"=data2),
path = "output.xlsx", col_names = TRUE, format_headers = TRUE)

Error: Error in libxlsxwriter: 'String exceeds Excel's limit of 32,767 characters.'

Here is the example code. thanks.

from writexl.

zifeng9527 avatar zifeng9527 commented on July 3, 2024

Can you please include example code?

I used for-loop to analyze hundreds of dataframes. Most of them output normally, however, a few might encounter the error, and will lead the stop of the program. If there is a paramater to avoid the termination, it will be helpfull.

from writexl.

nguyentruonglt avatar nguyentruonglt commented on July 3, 2024

@jeroen could you please help to explain more? What do you do with nchar() before using writexl to export data frame into excel file?

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.