Giter Club home page Giter Club logo

Comments (4)

ronhornbaker avatar ronhornbaker commented on June 6, 2024

Solved it. All numerical data were getting transformed to strings unless the noTruncate flag was set.

The fix is to change these lines in the defaultTransform_ function:

if (!hasOption_(options, "noTruncate") && data[row][column]) {
  data[row][column] = data[row][column].toString().substr(0, 256);
}

to

if (!hasOption_(options, "noTruncate") && (typeof data[row][column]=='string')) {
  data[row][column] = data[row][column].toString().substr(0, 256); 
}

from importjson.

ra4tx avatar ra4tx commented on June 6, 2024

Hmm, I'm having the same issue, all numerics are written as text. I tired this code change but that didn't seem to change the behavior of the function. I'm at line 418 in version 1.2.1. Anyone else had luck with this? My work around is computing the =value() of every imported JSON data item.

from importjson.

bradjasper avatar bradjasper commented on June 6, 2024

Hello, converting your data to numbers should take care of this. If you're still experiencing this on the latest version please let me know.

from importjson.

pabloab avatar pabloab commented on June 6, 2024

Duplicate of issue #7?

from importjson.

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.