How to Use Pandas With Pandera to Validate Your Data in Python

Поделиться
HTML-код
  • Опубликовано: 13 янв 2025

Комментарии • 74

  • @ArjanCodes
    @ArjanCodes  Год назад

    👷 Join the FREE Code Diagnosis Workshop to help you review code more effectively using my 3-Factor Diagnosis Framework: www.arjancodes.com/diagnosis

  • @brunosompreee
    @brunosompreee Год назад +3

    This is the only channel where I use the super thanks. Your channel is amazing and help me grow as a Python developer. Thanks!

  • @jorgesilva932
    @jorgesilva932 Год назад +22

    Great video Arjan ! It would be great to see the integration with SQL Model since often you want to save the data to a DB without repetition of the schemas.
    Thank you for the content !

  • @ronaldokun
    @ronaldokun Год назад +9

    Great Tutorial. Clean presentation and motivation for use. Pandera was in my toolbox to use in a Pandas Project. I'll follow-up with this clean setup using pydantic. I'll be interested in the integration with FastAPI.
    Thank You!

  • @JuanGomez-bz3my
    @JuanGomez-bz3my Месяц назад

    @ArjanCodes Brother, thanks for the video, it is a really good resource for those of us looking to get into the topic, keep the good work. I just would like to clarify one point, in the video you mentioned that time series are rows, not properly correct!. Data frames are made of time-series, that is, columns, not rows.

  • @ShinSoulTC
    @ShinSoulTC Год назад +22

    FastAPI integration pls!!

  • @davidl3383
    @davidl3383 Год назад

    Just discovered this library last week. Amazing. Thank you

  • @CaptainCsaba
    @CaptainCsaba Год назад

    I always envied C#-s FluentValidation package. It made validating data objects so easy and readbale. Glad to see Python has something similar with Pandera!

  • @xlr32x
    @xlr32x Год назад +2

    Love your videos, always simple shot and to the point

  • @fzfgru4508
    @fzfgru4508 Год назад +2

    Sounds very useful. Thanks for sharing.

  • @modoudiao9660
    @modoudiao9660 Год назад +2

    Wooow thanks for sharing

  • @silaseul3186
    @silaseul3186 Год назад

    Great Video ! :)
    I would love a tutorial about the Pint package for working with physical/scientific units including a take from you regarding typehinting and validation of correct function inputs.

  • @RatafakRatafak
    @RatafakRatafak Год назад +6

    Series can be not only a row but also a column of DataFrame.

  • @shivaharip6281
    @shivaharip6281 Год назад

    This is super useful. Thank you for sharing.
    I have a question about min 8:57 in the video though, you've mentioned the DataFrame columns can be set as an instance variable of OutputSchema class, is it an instance variable or a class variable?

  • @2010edward1978
    @2010edward1978 Год назад

    Thanks, it was indeed useful for me. I did not know about pandera

  • @AbdolaMike
    @AbdolaMike 8 месяцев назад

    love this would like more example with integration with hypothesis too!

  • @hudabdulwahab2499
    @hudabdulwahab2499 Год назад +2

    wonderful series! Add with fastapi is a good shout. Or perhaps ORM into some SQL database? not sure if that makes sense. In any case - VALIDATED 🔥

  • @lpadgett23
    @lpadgett23 Год назад

    This is super useful. Thank you

  • @uszr1
    @uszr1 Год назад

    Best IT channel ever❤

  • @colonellucasl
    @colonellucasl Год назад

    As always a great video. Thanks a lot :)

  • @rafaelagd0
    @rafaelagd0 Год назад

    Very useful stuff! Thank you!

  • @albertodivita
    @albertodivita Год назад

    Hi. I have a question, i don't know if you accept this kind of requests.
    I have a very huge table, of several GB. In an hour it writes about 4 thousand lines. Every day, every 5 minutes I have to populate/modify another table, much smaller, which makes a calculation: it is a sum of 3 or 4 columns contained in the larger database, from 00:01 to the time when the check is performer. So, if zi check at 8.00, I have to sum the values generate from 00:01 to 08:00. If I check at 13:00, the sum is for the values between 00:01 and 13.00.
    I was wondering, since I only work on data from that specific day (and so, max 30k of rows), does it make sense to create a temporary sqlite db in memory? Or rather a Pandas dataframe? Or are there other faster solutions? Something that does query caching (like SELECT * FROM XYZ WHERE TIME > "00:01" AND TIME

  • @Dendus90
    @Dendus90 Год назад +2

    Hello Arjan,
    Thank you for this great overview. I have a couple of follow-up question.
    What kind of validation does `pandera` support?
    Can I have
    1) fuzzy checks, something like I expect the value to be not a NULL, but I accept a few of them.
    2) multicolumn checks? If df["column_a"] == xx then df["column_b"] must be int, otherwise float?
    3) expectation regarding the shape of the data, using Z-test to compare it with a given distribution?
    Otherwise, this library is pretty useless. I can implement similar check in a few minutes on my own ;)

  • @MinhVu-ym4tk
    @MinhVu-ym4tk Год назад

    As always !!! your video is interesting and helpful !!! I really want to deep dive into the integration with FastAPI!

  • @ramonsantiago4573
    @ramonsantiago4573 Год назад

    Excellent content!

  • @dmitrykuleshov7134
    @dmitrykuleshov7134 Год назад

    Well, hmmm, interesting)
    Would be great to see more on integrations

  • @Juansevvc
    @Juansevvc Год назад

    It would be nice if you can extend or deepen on the validation you make using Pandera. Maybe showing some logs of dataframe examples, one that complies to the schema and one that doesn't. And maybe showing when do you use it too. Do you use it for reading from csv's or for testing a transformed data frame to check that it complies? Thanks :)

  • @codevincas
    @codevincas Год назад

    Love your production quality! Are you using a teleprompter? Your camera presence in the intro is sooo good!

  • @roccococolombo2044
    @roccococolombo2044 Год назад +3

    Is a series not a column of a Dataframe ?

  • @ThuBomb
    @ThuBomb Год назад

    Glad to see an integration of pydantic with this --schema file was not practical for a new developer coming into the codebase. Downside is we rely on two libraries but I believe it's worth it for now

  • @ZuhaBuba
    @ZuhaBuba Год назад

    Good, this is a very usefull video

  • @aaronsayeb6566
    @aaronsayeb6566 Год назад

    Thanks for the great video Arjan! How can you integrate this with BigQuery

  • @luizmatias737
    @luizmatias737 Год назад +4

    Thanks for sharing! I would like to know how to integrate with FastAPI. 😄

  • @mudbone7706
    @mudbone7706 10 месяцев назад

    Is there some way to pass the decorator check_output(schema) a schema that is not imported in global scope? Suppose you load the schema from file in main() and then want to call retrieve_retail_products() while passing it the validation schema. Can this be made to work?

  • @mpfmorawski
    @mpfmorawski Год назад

    A video on pandera and FastAPI integration would be great!

  • @Dara-lj8rk
    @Dara-lj8rk Год назад

    Thanks for the great video. MLFlow would be a good topic for a video in my opinion. Not many good vids out there.

  • @dmitryutkin9864
    @dmitryutkin9864 Год назад

    Could you please observe Polars?

  • @ErikS-
    @ErikS- Год назад +1

    I changed quite a bit in my programming techniques since I started watching your series of videos. Amongst other, I now also add the typehints when I define new methods.
    I am also a user of pandas. But when I see the typehints that you propose for pandas dataframes, I am getting the feeling that this is a bit over-the-top for me. I can understand it may be valuable in a professional software development department. But as an amateur programmer this is a bit too much I think.
    I also think you may change your title to also include "Pydantic". This since in the end, you propose to use Pydantic instead of (or combined with) Pandera.

  • @MrTomkan
    @MrTomkan Год назад

    Wouldn’t import pandera as pa because of the confusion with pyarrow. Also what if you don’t know the column names beforehand? But you do know the structure? Can you do regex matching? And can you repeat the structure for multiple columns?

  • @murphygreen8484
    @murphygreen8484 Год назад

    Is there a way yet to only keep rows that meet the criteria?

  • @lorenzotagliaferri2923
    @lorenzotagliaferri2923 Год назад

    Superb video! But how to validate an email address with pandera? Thank you in advance

  • @alexandrodisla6285
    @alexandrodisla6285 Год назад +3

    you can have 500 columns in a dataframe. ok, you will write a lot.
    The infered schema might help

  • @gabrielcanuto3321
    @gabrielcanuto3321 Год назад

    Hi arjan, very nice video!
    Do know if DataFrameSchema works well with the new pyarrow dtypes from Pandas 2.0.0?
    Thanks in advance :D

  • @commentmachine1457
    @commentmachine1457 Год назад

    what about the performance impact?

  • @timelschner8451
    @timelschner8451 Год назад

    cant you use the @validator function decorator with pydantic? Very nice video again! Thanks alot !

    • @aflous
      @aflous Год назад

      I don't think you can achieve this Pydantic validators without some additional work, because Pydantic is not specifically designed to work with DataFrames out of the box. You'll need to convert the DataFrame into a format that Pydantic can understand, such as a list of dictionaries.

  • @kosmonautofficial296
    @kosmonautofficial296 Год назад

    Great video! I am just about to start up a larger project for me working with a REST API so I will be using some Pydantic. I didn't know you could also validate pandas like this, pretty interesting. Right now what I am kinda stuck trying to figure out is how to design my classes. Right now there is one class for handling oauth authentication and two others it contains for get and set methods. So that way I can do restapi.get.systeminfo() or restapi.set.locationinfo() but they are starting to get large and I am thinking about have those get and set classes as bases and extended them each with other files to separate things more.
    My thoughts are to store some of this data with sqlite. Would I have benefits to using pandas with some of this? Right now I am thinking of using pedantic for API response validation, and user input validation and then internally store the datastructures in classes then using pandas to export to xlsx as one of the output formats.

  • @learndatabending182
    @learndatabending182 Год назад +1

    You may not know Polars outperform Pandas, and Peaks prepares to outperform Polars.

  • @sambroderick5156
    @sambroderick5156 Год назад

    What about pola-rs?! It has schemas built in!

  • @marcolaube2957
    @marcolaube2957 Год назад

    Great video! I'd love to see how to combine pandera with fastAPI

  • @torsteinsrnes4872
    @torsteinsrnes4872 Год назад

    Would it not be true to say that a Pandas Series is a column of a table, instead of a row of a table. A row usually multiple data types. A pandas series is usually of one datatype, a single column.

  • @avinashsingh7698
    @avinashsingh7698 Год назад

    I will be waiting for the fastapi integration.🙏🙏🙏

  • @SP-db6sh
    @SP-db6sh Год назад

    Attrs or pydantic is good, Databricks inferschema methods looks similar

  • @chobblegobbler6671
    @chobblegobbler6671 2 месяца назад

    polars pandera pydantic plz

  • @dann1kid
    @dann1kid Год назад

    arjan spying again for me. I just making project with tensorflow now lmao

  • @samuel.ibarra
    @samuel.ibarra Год назад

    Use polars.

  • @tsoier
    @tsoier Год назад

    For DS and ML purposes Pandera seems to be useless. It definitely slows down your EDA and ml-model development. Furthermore, it's hard to imagine a situation where data validation in production needs to be done in this way. If you receive invalid data in production, it's likely that you have larger problems with other services and components. Such situations can be detected with the help of monitoring systems and services.

  • @artistv1
    @artistv1 Год назад

    en.wikipedia.org/wiki/Design_by_contract