Pandas fundamentals every data scientist needs to know - Part 1

Sdílet
Vložit
  • čas přidán 5. 09. 2024

Komentáře • 20

  • @nathaneckel7105
    @nathaneckel7105 Před 3 lety +5

    Saving us time energy and tears on this incredible explanation, thank you once again @Misra :) Really appreciate that you identified and gave us a simple framework to think about Pandas.

    • @misraturp
      @misraturp  Před 3 lety +1

      Thank you Nathan! I think it's very important to get the basics right before diving deeper as I also try to do in the course as you know. :)

    • @nathaneckel7105
      @nathaneckel7105 Před 3 lety

      @@misraturp Always on point.

  • @LNMLucasMasiero
    @LNMLucasMasiero Před 3 lety +3

    Extra Tip:
    This are different ways of accesing to a df.
    The df is 3 columns of 'a', 'b', 'c' and 3 rows of 'x', 'y', 'z'
    import pandas as pd
    a = {
    'a': [1,2,3], 'b': [4,5,6], 'c': [7,8,9],}
    df = pd.DataFrame(a, index=['x','y','z'])
    #INDEXING
    #Row #Column ►►► Format
    print(df.iloc[0]); print(df.iloc[:,1])# Serie
    print(df.iloc[[0]]); print(df.iloc[:,[1]])# DataFrame
    #NAMING
    #Row #Column ►►► Format
    print(df.loc['x']); print(df.loc[:,'a']); print(df['a'])# Serie
    print(df.loc[['x']]); print(df.loc[:,['a']]); print(df[['a']])# DataFrame

    • @misraturp
      @misraturp  Před 3 lety +1

      Thanks for the additional tips!

  • @higiniofuentes2551
    @higiniofuentes2551 Před 4 měsíci +1

    Thank you for this very useful video!

  • @anlelmastas6201
    @anlelmastas6201 Před 3 lety +1

    After NumPy, as a beginner of Pandas, I really like your "detailed" explanation of each lines. Waiting for other parts like this. Thanks^^

    • @misraturp
      @misraturp  Před 3 lety +1

      Thank you Anıl. I'm happy to hear it was helpful! Next part is coming soon. :)

  • @brokerkamil5773
    @brokerkamil5773 Před rokem +1

    very well

  • @higiniofuentes2551
    @higiniofuentes2551 Před 4 měsíci

    Can we install Jupyter in a website? Or there are a website to work with panda's?
    Thank you!

  • @higiniofuentes2551
    @higiniofuentes2551 Před 4 měsíci

    May I ask how to install pandas?
    Thank you!

  • @kennethstephani692
    @kennethstephani692 Před rokem

    Great video, Misra!!

  • @jainamshah5622
    @jainamshah5622 Před rokem

    Hi, Is there a video on how to export the datasets once it is cleaned and exporting it to overright the existing data, so we can do visualisation through tableau/powerBI on it

    • @barspinoza
      @barspinoza Před rokem +2

      There're many functions to save data in different formats. Check the documentation for to_csv, to_excel, to_sql, etc. You can then load those files in other programs.

    • @jainamshah5622
      @jainamshah5622 Před rokem

      @@barspinoza cool! ,Thank you 😊

  • @benravenhill484
    @benravenhill484 Před 3 měsíci

    cool bro

  • @abusalehsuvro3150
    @abusalehsuvro3150 Před 3 lety +1

    take respect and love......

  • @misraturp
    @misraturp  Před 3 lety

    👉 All you need to know about Pandas in one place! Download my Pandas Cheat Sheet (free) misraturp.gumroad.com/l/pandascs

  • @gunjansingh9956
    @gunjansingh9956 Před 11 měsíci

    you are so cute😊😊