Giter VIP home page Giter VIP logo

Comments (7)

sharpe5 avatar sharpe5 commented on July 28, 2024

Use mask() instead:

from dfply import *
# "diamonds" is a DataFrame supplied by dfply for testing purposes
diamonds >> mask(X.color == 'E')

This is one of the few instances where the Python API is different to the R API. The reason is a clash with an existing Python API in a different package.

from dfply.

ravik020 avatar ravik020 commented on July 28, 2024

No, what i meant to say is no functions are working from the dfply package. for instance,
image

from dfply.

sharpe5 avatar sharpe5 commented on July 28, 2024

I have been using dfply for years, and it works perfectly every time.

It looks like you are using the wrong syntax.

  1. Try some of the examples in the dfply readme at:
    https://github.com/kieferk/dfply

  2. Try upgrading from Python 3.0 to Python 3.6.

  3. Try this example:

from dfply import *
# Diamonds is a built in dataframe. Prints first three rows.
diamonds >> head(3) 
# Demo of different types of select. Prints column 1, then column "price", then columns "x" and "y".
diamonds >> select(1, X.price, ['x', 'y']) >> head(2) 

from dfply.

kieferk avatar kieferk commented on July 28, 2024

Years! Has it really been around that long? Crazy.

If none of the functions work for you some other strange issue is going on. And for the record, yes as @sharpe5 says filter is a reserved name in python and so I switched the name to mask.

from dfply.

thalesmello avatar thalesmello commented on July 28, 2024

The reason it's not working is the dfply version in pip repository is from Aug 2017, whereas the filter_by alias was included merely five months ago.

Therefore, the package on pip should probably be updated.

from dfply.

sharpe5 avatar sharpe5 commented on July 28, 2024

Can we close this issue for now?

from dfply.

ravik020 avatar ravik020 commented on July 28, 2024

from dfply.

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.