Giter VIP home page Giter VIP logo

Comments (8)

JhennerTigreros avatar JhennerTigreros commented on July 20, 2024 1

Yes, the problem is in eval function that is used in frame.js

if (eval(`${elem}${operator}${value}`)) {
  new_data.push(data_value);
  new_index.push(index[i]);
}

becase eval function resolve the string to NG==NG and the engine try to get the variable NG that doesn't exits, I fix this changing the snippet code to

if (eval(`elem${operator}value`)) {
  new_data.push(data_value);
  new_index.push(index[i]);
}

and get the correct output

image

change it locally while fixing on main branch, the file is in /danfojs-node/dist/core/frame.js

from danfojs.

JhennerTigreros avatar JhennerTigreros commented on July 20, 2024 1

I open a pull request with the fix :)

from danfojs.

JhennerTigreros avatar JhennerTigreros commented on July 20, 2024

Can you provide some rows of example from csv?

from danfojs.

samiragol avatar samiragol commented on July 20, 2024

I used the same example in your github.

let data = { "Abs": [20, 30, 47] ,
            "Count": [34, 4, 5] ,
            "country code": ["NG", "FR", "GH"] }

from danfojs.

samiragol avatar samiragol commented on July 20, 2024

thanks, is it going to be in the next release?

from danfojs.

risenW avatar risenW commented on July 20, 2024

@JhennerTigreros
Thanks for the fix. Will take a look and merge.

from danfojs.

risenW avatar risenW commented on July 20, 2024

Merged! Thanks folks

from danfojs.

fredthedead avatar fredthedead commented on July 20, 2024

I'm using the version suggested in the repository README.md file
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/index.min.js"></script>
and still getting this error... is this version the latest or is there a new one?

from danfojs.

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.