Skip to content
Advertisement

how to divide a column element wise in python

I want to divide the first column of this table element wise by 3.6.

JavaScript

enter image description here

It throws an error something like :

JavaScript

Here’s what I tried:

JavaScript

Advertisement

Answer

There are several ways to do it, here are two. I suggest from your error message that your data is in a pd.DataFrame. I used a shortened version of your data.

JavaScript

You could use map (or apply) and define a lambda function that is applied to every cell.

JavaScript

Or you use the pandas built-in method pd.Series.divide

JavaScript

Output in both cases:

JavaScript
Advertisement