Python-パンダで特定の値をDataFrameで検索する
DataFrameで特定の値を検索できます。 ilocを使用して必要な値をフェッチし、行全体を表示します。まず、必要なライブラリをインポートします-
import pandas as pd
4列のデータフレームを作成する-
dataFrame = pd.DataFrame({"Car": ['BMW', 'Lexus', 'Tesla', 'Mustang', 'Mercedes', 'Jaguar'],"Cubic_Capacity": [2000, 1800, 1500, 2500, 2200, 3000],"Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000],"Units_Sold": [ 100, 120, 150, 110, 200, 250] })
登録価格500の車を検索してみましょう-
for i in range(len(dataFrame.Car)): if 5000 == dataFrame.Reg_Price[i]: indx = i
ここで、見つかった値を表示します-
dataFrame.iloc[indx]
例
以下はコードです-
import pandas as pd # creating dataframe dataFrame = pd.DataFrame({"Car": ['BMW', 'Lexus', 'Tesla', 'Mustang', 'Mercedes', 'Jaguar'],"Cubic_Capacity": [2000, 1800, 1500, 2500, 2200, 3000],"Reg_Price": [7000, 1500, 5000, 8000, 9000, 6000],"Units_Sold": [ 100, 120, 150, 110, 200, 250] }) print"DataFrame ...\n",dataFrame # search Car with Registeration Price 500 for i in range(len(dataFrame.Car)): if 5000 == dataFrame.Reg_Price[i]: indx = i # display the found value print"\nSearched DataFrame for the following specific value...\n",dataFrame.iloc[indx]
出力
これにより、次の出力が生成されます-
DataFrame ... Car Cubic_Capacity Reg_Price Units_Sold 0 BMW 2000 7000 100 1 Lexus 1800 1500 120 2 Tesla 1500 5000 150 3 Mustang 2500 8000 110 4 Mercedes 2200 9000 200 5 Jaguar 3000 6000 250 Searched DataFrame for the following specific value... Car Tesla Cubic_Capacity 1500 Reg_Price 5000 Units_Sold 150 Name: 2, dtype: object
-
Python-Matplotlibを使用してPandasデータフレームのヒストグラムをプロットしますか?
ヒストグラムは、データの分布を表したものです。ヒストグラムをプロットするには、hist()メソッドを使用します。最初に、両方のライブラリをインポートします- import pandas as pd import matplotlib.pyplot as plt 2列のデータフレームを作成する- dataFrame = pd.DataFrame({ "Car": ['BMW', 'Lexus', 'Tesla', 'Mustang', 'Mercedes', '
-
Python-PandasDataFrameの散布図を描画します
散布図は、データの視覚化手法です。 plot.scatter()を使用して、散布図をプロットします。まず、必要なライブラリをインポートしましょう- チームレコードにデータがあります。 PandasDataFrameに設定します- data = [["Australia", 2500],["Bangladesh", 1000],["England", 2000],["India", 3000],["Srilanka", 1500]] dataFrame = pd.DataFrame(data,