Python | Панды dataframe.rmul ()
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Pandas dataframe.rmul() function is used for finding the multiplication of dataframe and other, element-wise (binary operator rfloordiv). This function is essentially same as doing other * dataframe but with a support to substitute for missing data in one of the inputs.
Syntax:DataFrame.rmul(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 leve
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 missingReturns : result : DataFrame
Example #1: Use rmul() function to find the multiplication of a series with a dataframe.
# importing pandas as pdimport pandas as pd # Creating the dataframe df = pd.DataFrame({"A":[1, 5, 3, 4, 2], "B":[3, 2, 4, 3, 4], "C":[2, 2, 7, 3, 4], "D":[4, 3, 6, 12, 7]}, index =["A1", "A2", "A3", "A4", "A5"]) # Print the dataframedf |

Let’s create the series
# importing pandas as pdimport pandas as pd # Create the seriessr = pd.Series([12, 25, 64, 18], index =["A", "B", "C", "D"]) # Print the seriessr |

Lets use the dataframe.rmul() function to find the multiplication of a series with dataframe
df.rmul(sr, axis = 1) |
Output :
Example #2: Use rmul() function to perform multiplication of a dataframe with other.
# importing pandas as pdimport pandas as pd # Creating the first dataframe df1 = pd.DataFrame({"A":[1, 5, 3, 4, 2], "B":[3, 2, 4, 3, 4], "C":[2, 2, 7, 3, 4], "D":[4, 3, 6, 12, 7]}, index =["A1", "A2", "A3", "A4", "A5"]) # Creating the second dataframedf2 = pd.DataFrame({"A":[10, 11, 7, 8, 5], "B":[21, 5, 32, 4, 6], "C":[11, 21, 23, 7, 9], "D":[1, 5, 3, 8, 6]}, index =["A1", "A2", "A3", "A4", "A5"]) # Print the first dataframeprint(df1) # Print the second dataframeprint(df2) |


Lets perform df2 * df1
# perform multiplication of df2 with df1df1.rmul(df2) |
Выход :

Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.