Coder Social home page Coder Social logo

Comments (4)

Galileo-Galilei avatar Galileo-Galilei commented on July 29, 2024 1

Hi @noklam, I think there are several sub tasks to this ticket but not all with the same priority.

  1. I think (to be verified) that if we create a custom resolver which can parse a DataFrameModel it will be enough for the hook to work "as is" with the exact same syntax. Something like :
my_data: 
    type: ...
    filepath: ...
    metadata: 
        pandera: 
            schema: ${pa.python: my_kedro_package.schemas.my_data.MyDataSchema} # we should "just" create the resovler which will import and instantiate the class

Does the design look ok for you? Do you have time to work on this one?

  1. We can add a CLI to infer this schema and generate a my_kedro_package.schemas.my_data.py file (pseudo code below):
# my_kedro_package.schemas.my_data.py

from pandera import DataframeModel
from pandera.io import Field

class MyDataSchema(DataframeModel):
    var1: str = Field()
    var2: <var_typ>e= Field()
...
  • This second step is optional and low priority.
  • I don't think we should create default test. My goal is to have a helper to generate the file and eventually loop over the variables (it is cumbersome to create dozens of entries if the dataset has many variables).
  • This may be a template with a jinja loop over variables?

from kedro-pandera.

noklam avatar noklam commented on July 29, 2024 1

How does 2. different from the current infer CLI? I'll work on 1.

from kedro-pandera.

Galileo-Galilei avatar Galileo-Galilei commented on July 29, 2024

The current CLI has a flag --python for this but it is not implemented. The little difference is that the infer CLI for yaml use a built-in pandera function which creates basic tests and the file, but there is no such function for python so we should create it on our own. that is why I want to keep it really simple, I want to avoid creating boilerplate code, not really infering advanced tests.

from kedro-pandera.

noklam avatar noklam commented on July 29, 2024

The current CLI has a flag --python for this but it is not implemented
I am not sure what do you mean, I thought this function exist already? isn't it using the schema.to_script() method?

Pandera natively support convert DataFrameModel -> DataFrameSchema, but not the other way round.

from kedro-pandera.

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.