パンダGPT
1.0.0
pandas-gpt
ChatGPT でデータ サイエンス ワークフローを強化します。
pandas-gpt
は、ChatGPT プロンプトを使用して pandas DataFrame でほぼあらゆることを行うための Python ライブラリです。
pip install pandas-gpt
OPENAI_API_KEY
環境変数を OpenAI API キーに設定するか、次のコード スニペットを使用します。
import openai
openai . api_key = ''
セットアップと使用例は、このGoogle Colab ノートブックで入手できます。
import pandas as pd
import pandas_gpt
df = pd . DataFrame ( 'https://gist.githubusercontent.com/bluecoconut/9ce2135aafb5c6ab2dc1d60ac595646e/raw/c93c3500a1f7fae469cba716f09358cfddea6343/sales_demo_with_pii_and_all_states.csv' )
# Data transformation
df = df . ask ( 'drop purchases from Laurenchester, NY' )
df = df . ask ( 'add a new Category column with values "cheap", "regular", or "expensive"' )
# Queries
weekday = df . ask ( 'which day of the week had the largest number of orders?' )
top_10 = df . ask ( 'what are the top 10 most popular products, as a table' )
# Plotting
df . ask ( 'plot monthly and hourly sales' )
top_10 . ask ( 'horizontal bar plot with pastel colors' )
# Allow changes to original dataset
df . ask ( 'do something interesting' , mutable = True )
# Show source code before running
df . ask ( 'convert prices from USD to GBP' , verbose = True )
Azure OpenAI Service などの別の API ホストを使用する場合:
import openai
openai . api_type = 'azure'
openai . api_base = ''
openai . api_version = ''
openai . api_key = ''
import pandas_gpt
# pandas_gpt.model = '' # Default is 'gpt-3.5-turbo'
pandas_gpt . completion_config = {
'engine' : '' ,
# 'deployment_id': '',
}
ChatGPT の制限はこのライブラリにも適用されることに注意してください。 Google Colab、Kaggle、GitPod などのサンドボックス環境でpandas-gpt
使用することをお勧めします。