search
Search
Login
Unlock 100+ guides
menu
menu
web
search toc
close
Comments
Log in or sign up
Cancel
Post
account_circle
Profile
exit_to_app
Sign out
What does this mean?
Why is this true?
Give me some examples!
search
keyboard_voice
close
Searching Tips
Search for a recipe:
"Creating a table in MySQL"
Search for an API documentation: "@append"
Search for code: "!dataframe"
Apply a tag filter: "#python"
Useful Shortcuts
/ to open search panel
Esc to close search panel
to navigate between search results
d to clear all current filters
Enter to expand content preview
icon_star
Doc Search
icon_star
Code Search Beta
SORRY NOTHING FOUND!
mic
Start speaking...
Voice search is only supported in Safari and Chrome.
Navigate to

Pandas DataFrame | pow method

schedule Aug 12, 2023
Last updated
local_offer
PythonPandas
Tags
mode_heat
Master the mathematics behind data science with 100+ top-tier guides
Start your free 7-days trial now!

Pandas DataFrame.pow(~) method computes the exponential power of the values in the source DataFrame and another scalar, sequence, Series or DataFrame, that is:

DataFrame ** other
NOTE

Unless you use the parameters axis, level and fill_value, pow(~) is equivalent to computing the exponential power using the ** operator.

Parameters

1. otherlink | scalar or sequence or Series or DataFrame

The resulting DataFrame will be the exponential power of the source DataFrame and other.

2. axislink | int or string | optional

Whether to broadcast other for each column or row of the source DataFrame:

Axis

Description

"index" or 0

other is broadcasted for each column of the source DataFrame.

"columns" or 1

other is broadcasted for each row of the source DataFrame.

This is only relevant if the shape of the source DataFrame does not match that of other. By default, axis=1.

3. level | int or string | optional

The name or the integer index of the level to consider. This is relevant only if your DataFrame is Multi-index.

4. fill_valuelink | float or None | optional

The value to replace NaN before computing the exponential power. If the computation involves two NaN, then the result would still be NaN. By default, fill_value=None.

Return Value

A new DataFrame computed by the exponential power of the source DataFrame and other.

Examples

Basic usage

Consider the following DataFrames:

df = pd.DataFrame({"A":[3,4], "B":[5,6]})
df_other = pd.DataFrame({"A":[1,1], "B":[2,2]})
A B | A B
0 3 5 | 0 3 25
1 4 6 | 1 4 36

Computing the exponential power of df and df_other:

df.pow(df_other)
A B
0 3 25
1 4 36

Here, we're computing the following element-wise exponential power:

3**1 5**2
4**1 6**2

Broadcasting

Consider the following DataFrame:

df = pd.DataFrame({"A":[3,4], "B":[5,6]})
df
A B | A B
0 3 5 | 0 3 25
1 4 6 | 1 4 36

Row-wise

By default, axis=1, which means that other will be broadcasted for each row in df:

df.pow([1,2]) # axis=1
A B
0 3 25
1 4 36

Here, we're computing the following element-wise exponential power:

3**1 5**2
4**1 6**2

Column-wise

To broadcast other for each column in df, set axis=0 like so:

df.pow([1,2], axis=0)
A B
0 3 5
1 16 36

Here, we're doing the following element-wise exponential power:

3**1 5**1
4**2 6**2

Specifying fill_value

Consider the following DataFrames:

df = pd.DataFrame({"A":[2,np.NaN], "B":[np.NaN,3]})
df_other = pd.DataFrame({"A":[4,5], "B":[np.NaN,np.NaN]})
A B | A B
0 2.0 NaN | 0 4 NaN
1 NaN 3.0 | 1 5 NaN

By default, when we compute the power using pow(~), any operation with NaN results in NaN:

df.pow(df_other)
A B
0 16.0 NaN
1 NaN NaN

We can fill the NaN values before we compute the power by using the fill_value parameter:

df.pow(df_other, fill_value=1)
A B
0 16.0 NaN
1 1.0 3.0

Here, notice when the operation is between two NaN, the result is still NaN regardless of fill_value.

robocat
Published by Isshin Inada
Edited by 0 others
Did you find this page useful?
thumb_up
thumb_down
Comment
Citation
Ask a question or leave a feedback...
thumb_up
0
thumb_down
0
chat_bubble_outline
0
settings
Enjoy our search
Hit / to insta-search docs and recipes!