目錄
Dynamically Evaluating Expressions from Formulas in Pandas
Challenge
pd.eval Functions
Key Differences
pd.eval vs. df.eval
df.eval vs. df.query
Solution
Reassignment
Passing Arguments Inside the Expression
首頁 後端開發 Python教學 如何使用「pd.eval」評估 Pandas 中的算術表達式?

如何使用「pd.eval」評估 Pandas 中的算術表達式?

Nov 15, 2024 am 08:13 AM

How to Evaluate Arithmetic Expressions in Pandas Using `pd.eval`?

Dynamically Evaluating Expressions from Formulas in Pandas

Challenge

Evaluate arithmetic expressions using pd.eval on one or more DataFrame columns, as shown in the following example:

x = 5
df2['D'] = df1['A'] + (df1['B'] * x)
登入後複製

pd.eval Functions

pd.eval, df.eval, and df.query are three closely related functions for evaluating expressions in Pandas. Each has its own subtle variations, but they all follow similar syntax rules and feature support.

Supported Features:

  • Arithmetic operations
  • Comparison operations
  • Boolean operations
  • List and tuple literals
  • Attribute access
  • Subscript expressions
  • Simple variable evaluation

Syntax Rules:

Expressions must be passed as strings, with the following guidelines:

  • Entire expression is a string
  • Variables in the global namespace are referenced by their names
  • Specific columns are accessed through attribute accessor
  • Parentheses can be used to override operator precedence

Key Differences

pd.eval vs. df.eval

  • Column Access: pd.eval requires column names with DataFrame indexing, while df.eval allows direct access to column names.
  • Expressions with DataFrames: pd.eval is better for dataframe-wide operations, while df.eval operates on specific DataFrames.

df.eval vs. df.query

  • Querying vs. Evaluation: df.query evaluates conditional expressions and returns matching rows. df.eval returns the result of the expression itself.
  • Convenience: df.query is generally more concise for querying purposes.

Solution

To solve the original challenge using pd.eval:

x = 5
pd.eval("df1.A + (df1.B * x)")
登入後複製

Reassignment

To assign the result of the expression back to df2, use the target parameter:

pd.eval("D = df1.A + (df1.B * x)", target=df2)
登入後複製

Passing Arguments Inside the Expression

To pass x as an argument within the expression string, use the @ symbol:

pd.eval("df1.A + (df1.B * @x)", local_dict={'x': x})
登入後複製

以上是如何使用「pd.eval」評估 Pandas 中的算術表達式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

如何在使用 Fiddler Everywhere 進行中間人讀取時避免被瀏覽器檢測到? 如何在使用 Fiddler Everywhere 進行中間人讀取時避免被瀏覽器檢測到? Apr 02, 2025 am 07:15 AM

使用FiddlerEverywhere進行中間人讀取時如何避免被檢測到當你使用FiddlerEverywhere...

在Linux終端中使用python --version命令時如何解決權限問題? 在Linux終端中使用python --version命令時如何解決權限問題? Apr 02, 2025 am 06:36 AM

Linux終端中使用python...

如何在10小時內通過項目和問題驅動的方式教計算機小白編程基礎? 如何在10小時內通過項目和問題驅動的方式教計算機小白編程基礎? Apr 02, 2025 am 07:18 AM

如何在10小時內教計算機小白編程基礎?如果你只有10個小時來教計算機小白一些編程知識,你會選擇教些什麼�...

如何繞過Investing.com的反爬蟲機制獲取新聞數據? 如何繞過Investing.com的反爬蟲機制獲取新聞數據? Apr 02, 2025 am 07:03 AM

攻克Investing.com的反爬蟲策略許多人嘗試爬取Investing.com(https://cn.investing.com/news/latest-news)的新聞數據時,常常�...

Python 3.6加載pickle文件報錯ModuleNotFoundError: No module named '__builtin__'怎麼辦? Python 3.6加載pickle文件報錯ModuleNotFoundError: No module named '__builtin__'怎麼辦? Apr 02, 2025 am 06:27 AM

Python3.6環境下加載pickle文件報錯:ModuleNotFoundError:Nomodulenamed...

使用Scapy爬蟲時,管道文件無法寫入的原因是什麼? 使用Scapy爬蟲時,管道文件無法寫入的原因是什麼? Apr 02, 2025 am 06:45 AM

使用Scapy爬蟲時管道文件無法寫入的原因探討在學習和使用Scapy爬蟲進行數據持久化存儲時,可能會遇到管道文�...

See all articles