
How to Do Elementwise Math in Python
This video shows how to perform elementwise math operations using base python lists, numpy arrays and on the columns of pandas dataframes.
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:
# Elementwise math on two lists using zip
list1 = [1,2,3,4,5]
list2 = [6,7,8,9,10]
elementwise_result = [l1 + l2 for l1, l2 in zip(list1, list2)]
elementwise_result
# Elementwise math using numpy arrays
import numpy as np
list1 = np.array(list1)
list2 = np.array(list2)
list1 + list2
# Elementwise math on columns in pandas data frames
import pandas as pd
df = pd.DataFrame(data = {"list1": list1, "list2" : list2})
df.list1 + df.list2
* 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