Giter Site home page Giter Site logo

Comments (3)

demydd avatar demydd commented on August 21, 2024 1

It looks to work well.
At least in my case http://stackoverflow.com/questions/35295320/the-fastest-way-to-write-csv-file-by-write-csv-raw-iotools-package.
It would be nice to add ability to define decimal sign like ' dec="," ' .

from iotools.

gregorybooma avatar gregorybooma commented on August 21, 2024

Looks like append and fileEncoding are also left out, though append seems to work. fileEncoding doesn't apply for me, but having col.names would be great. Currently doing the following as a workaround:

cat(noquote(paste0(paste0(names(df),collapse = ","),"\n")),file = "output.csv")
write.csv.raw(df,"output.csv",append=TRUE)

Note that "\n" is required to avoid starting the append on the first line of the file.

from iotools.

demydd avatar demydd commented on August 21, 2024

Comparison of 'write.csv.raw' and other write-methods (details see at http://stackoverflow.com/questions/35295320/the-fastest-way-to-write-csv-file-by-write-csv-raw-iotools-package):

system.time(write.csv.raw(n,"test.csv",sep=";",append=TRUE))
user system elapsed
15.61 1.17 21.92
system.time(write.table(n,"test.csv",sep=";",row.names=FALSE,dec=","))
user system elapsed
63.25 1.20 64.60
system.time(write.csv2(n,"test.csv",row.names=FALSE))
user system elapsed
63.71 1.28 65.38
system.time(write_csv(n, "test.csv", na = "NA"))
user system elapsed
136.75 3.60 141.24

from iotools.

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.