Git Product home page Git Product logo

Comments (5)

jeroen avatar jeroen commented on June 6, 2024

Can you give us an example of a data frame that you imported with a stray comma, so that we can reproduce the problem?

from writexl.

scientistanton avatar scientistanton commented on June 6, 2024

I've found it really hard to reproduce - so I've trimmed the problematic csv and zipped it up (attached). This produces the error:
library(tidyverse)
library(writexl)
df <- read_csv("problem.csv")
list <- df%>% split(.$SHEET)
write_xlsx(list, "problem.xlsx")

problem.zip

I think this is a very niche issue. I'm not sure how this csv was generated.

from writexl.

scientistanton avatar scientistanton commented on June 6, 2024

I should have mentioned - you don't see the error until you open the resulting xlsx file in Excel.

from writexl.

jeroen avatar jeroen commented on June 6, 2024

Yes I see it. The problem actually already appears in read_csv. Line 15 gets read incorrectly:

> read_csv("~/Downloads/problem.csv")[15,]
Parsed with column specification:
cols(
  SHEET = col_integer(),
  NAME = col_character()
)
# A tibble: 1 x 2
  SHEET NAME                
  <int> <chr>               
1     1 "Ward\x92s Prolific"

The word Wardís has not been correctly read from the csv and the string is corrupt. I'm not sure how excel reads this csv file actually.

from writexl.

jeroen avatar jeroen commented on June 6, 2024

So the problem is that your csv file is encoded in Windows-1252 but R assumes UTF-8. Try this:

library(tidyverse)
library(writexl)
df <- read_csv("~/Downloads/problem.csv")
df$NAME <- iconv(df$NAME, "Windows-1252", "UTF-8")
write_xlsx(df, "works.xlsx")

Note that wikipedia explains why we can't use latin1:

It is very common (on the Internet) to mislabel Windows-1252 text with the charset label ISO-8859-1. A common result was that all the quotes and apostrophes (produced by "smart quotes" in word-processing software) were replaced with question marks or boxes on non-Windows operating systems

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.