VOOZH about

URL: https://www.geeksforgeeks.org/python/python-pandas-dataframe-mul/

⇱ Python | Pandas dataframe.mul() - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Pandas dataframe.mul()

Last Updated : 6 Aug, 2021

Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier.
Pandas dataframe.mul() function return multiplication of dataframe and other element- wise. This function essentially does the same thing as the dataframe * other, but it provides an additional support to handle missing values in one of the inputs.
 

Syntax: DataFrame.mul(other, axis='columns', level=None, fill_value=None)
Parameters : 
other : Series, DataFrame, or constant 
axis : For Series input, axis to match Series index on 
level : Broadcast across a level, matching Index values on the passed MultiIndex level 
fill_value : Fill existing missing (NaN) values, and any new element needed for successful DataFrame alignment, with this value before computation. If data in both corresponding DataFrame locations is missing the result will be missing
Returns : result : DataFrame
 


Example #1: Use mul() function to find the multiplication of a dataframe with a series. 
Note : For multiplication with series, dataframe axis used for multiplication must match series index on.
 

👁 Image

Let's create the series
 

👁 Image

Lets use the dataframe.mul() function to perform multiplication 
 

Output : 
 

👁 Image


  
Example #2: Use mul() function to find the multiplication of two dataframes. One dataframe contains NA values.
 

👁 Image

Lets use the dataframe.mul() function to find the multiplication of two dataframes, also handle the missing values.
 

Output : 
 

👁 Image


Notice, all the missing value cells has been filled with 100 before multiplication
 

Comment