Learn PANDAS in 5 minutes | Pandas Ultraquick Tutorial

preview_player
Показать описание
Do the Pandas Ultraquick Tutorial together with me in this Python tutorial.

Pandas is the Python Data Analysis Library. It’s a powerful tool to load the data into so called data frames, which is basically a table that you can then easily analyze, modify, and also visualize. This tutorial introduces DataFrames, which are the central data structure in the pandas API.

Get my Free NumPy Handbook:

📓 ML Notebooks available on Patreon:

If you enjoyed this video, please subscribe to the channel:

~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~

#Python #MachineLearning

----------------------------------------------------------------------------------------------------------
* This is an affiliate link. By clicking on it you will not have any additional costs, instead you will support me and my project. Thank you so much for the support! 🙏
Рекомендации по теме
Комментарии
Автор

I watched this video and I am now an expert at pandas.

ManAcadie
Автор

I’m in shock at how effective and simple this video is- well done! 👍:))

yosefmehio
Автор

Thank you Patrick. Very helpful to refresh :)

luiscanasdiaz
Автор

Thankyou so much ..Hugs. Damn ! Man you are the best. your 5 min tutorial is wonderful.

samirharris
Автор

great tutorial! what tool are you using to make that color trail from your mouse? I'd love to use it in my tutorials

d-i-ry
Автор

You have been a huge help with all your videos! Thanks a LOT! :)

varunmamtani
Автор

'''
1.Create an 3x4 (3 Rows x 4 columns) pandas DataFrame in which the columns are named
Eleanor, Childi, Tahani And Jason. populate each of the 12 cells in the DataFrame with a random
integer between 0 and 100, inclusive.

2. Output the following:
--The Entrie Dataframe
-- The value in the cell of the row #1 of the Elanor column

3. Create A 5th column Named Janet, which is populated with the row-by-row sum of
Tahani and Jason
'''

import pandas as pd
import numpy as np

# Create 3X4 numpy array
my_data = np.array([[25, 63, 87, 45], [87, 58, 65, 12], [58, 25, 33, 87]])
# print(my_data.shape)

data_column_name = ["Eleaor", "Childi", "Tahani", "Jason"]
my_dataframe = pd.DataFrame(data=my_data, columns=data_column_name)
print(my_dataframe)

print("\n", my_dataframe.iloc[1, 0], "Value of row #1 of the Elanor column")

my_dataframe["Janet"]= my_dataframe["Tahani"] + my_dataframe["Jason"]

print(my_dataframe)

akashkumargondaliya
Автор

I want to learn Python from you .. can you start online classss ??

Sudheerkreddy
Автор

can you make a crash course on pandas, matplotlib, seaborn? Like you did for NumPy!

rubayetalam
Автор

How do you label each row in a column with pandas

shaunwilliams
Автор

hello Patrick, can you make a tutorial about multi indexing🙂

ranjiths-bw
Автор

Great content! If you want take a look at my Pandas tutorial as well.

MachineLearningPro