How To Use apply() In Pandas (Python)

Channel:
Subscribers:
53,100
Published on ● Video Link: https://www.youtube.com/watch?v=smPLY_5gVv4



Category:
Guide
Duration: 8:54
23,131 views
604


↓ Code Available Below! ↓

This video shows how to apply functions to columns and rows pandas data frames using .apply(). The .apply() function operates on pandas series or data frames and applies a function to each element of a single series (such as each record in a column of a data frame) or to each row or column of a data frame. .apply() can be a useful way to generate aggregate statistics for each column or to generate new columns.


If you find this video useful, like, share and subscribe to support the channel!
► Subscribe: https://www.youtube.com/c/DataDaft?sub_confirmation=1


Code used in this Python Code Clip:

import pandas as pd

data = pd.DataFrame({"power_level": [12000, 16000, 4000, 1500, 3000,
2000, 1600, 2000, 300],
"uniform color": ["orange", "blue", "black", "orange",
"purple", "green", "orange", "orange","orange"],
"species": ["saiyan","saiyan","saiyan","half saiyan",
"namak","human","human","human","human"]},
index = ["Goku","Vegeta", "Nappa","Gohan",
"Piccolo","Tien","Yamcha", "Krillin","Roshi"])

data

# Use .apply() to apply a function to a Series (single column)

def my_function(x, h, l):
if x > h:
return("high")
if x > l:
return("med")
return ("low")


data["power_level"].apply(my_function, args = [10000, 2000])

# Apply a function to each column with axis = 0
# Can be used to create new rows/summary rows

def mode(x):
return x.mode()

data.apply(mode, axis = 0)

# Apply a function to each row with axis = 1
# Can be used to create new columns/summary columns

def max_str_len(x):
return max([len(str(v)) for v in x])

data.apply(max_str_len, axis = 1)

# Apply a function to each row, referencing column names:

def make_char_string(x):
return(f"{x.species} with power level: {x.power_level}")

data.apply(make_char_string, axis = 1 )


* Note: YouTube does not allow greater than or less than symbols in the text description, so the code above will not be exactly the same as the code shown in the video! I will use Unicode large < and > symbols in place of the standard sized ones. .


⭐ Kite is a free AI-powered coding assistant that integrates with popular editors and IDEs to give you smart code completions and docs while you’re typing. It is a cool application of machine learning that can also help you code faster! Check it out here: https://www.kite.com/get-kite/?utm_medium=referral&utm_source=youtube&utm_campaign=datadaft&utm_content=description-only







Tags:
pandas apply
pandas .apply
pandas .apply()
.apply
.apply()
apply in pandas
apply function
apply function to rows
apply function to columns
apply to data frame
apply in python
apply a function
apply function to data frame
apply function to dataframe
pandas function apply
apply
how to apply a function to a data frame
elementwise function
pandas run function on rows
pandas run function on columns
pandas basics
learn pandas
pandas functions