Python
 Computer >> コンピューター >  >> プログラミング >> Python

Python Pandasの列名から列インデックスを取得するにはどうすればよいですか?


Python Pandasの列名から列インデックスを取得するには、 get_loc()を使用できます。 メソッド。

ステップ-

  • 2次元、サイズ変更可能、潜在的に異種の表形式データ、 dfを作成します 。
  • 入力DataFrame、 dfを印刷します 。
  • df.columns を使用して、DataFrameの列を検索します 。
  • 手順3の列を印刷します。
  • 変数を初期化しますcolumn_name
  • column_name のインデックスの場所、つまりインデックスを取得します 。
  • column_nameのインデックスを印刷します 。

例-

import pandas as pd

df = pd.DataFrame(
   {
      "x": [5, 2, 7, 0],
      "y": [4, 7, 5, 1],
      "z": [9, 3, 5, 1]
   }
)

print"Input DataFrame 1 is:\n", df
columns = df.columns
print"Columns in the given DataFrame: ", columns

column_name = "z"
column_index = columns.get_loc(column_name)
print"Index of the column ", column_name, " is: ", column_index

column_name = "x"
column_index = columns.get_loc(column_name)
print"Index of the column ", column_name, " is: ", column_index

column_name = "y"
column_index = columns.get_loc(column_name)
print"Index of the column ", column_name, " is: ", column_index

出力

Input DataFrame 1 is:
x y z
0 5 4 9
1 2 7 3
2 7 5 5
3 0 1 1

Columns in the given DataFrame: Index(['x', 'y', 'z'],
dtype='object')

Index of the column z is: 2
Index of the column x is: 0
Index of the column y is: 1

  1. Pythonで文字列から整数値を取得するにはどうすればよいですか?

    正規表現を使用して、配列内で出現する順にすべての整数値を取得できます。次のコードを使用して、これらの値を取得できます- 例 import re s = "12 hello 52 19 some random 15 number" # Extract numbers and cast them to int list_of_nums = map(int, re.findall('\d+', s)) print list_of_numsにキャストします 出力 [12, 52, 19, 15] すべての数値を1つの数値に連結して出力​​する場合は、str.isd

  2. Pythonで変数名を文字列として取得するにはどうすればよいですか?

    変数は実際にはオブジェクトへの名前マッピングであるため、これは実際にはPythonで行うことではありません。 Pythonで正規名を持つオブジェクトは、モジュール、関数、クラスのみです。もちろん、関数またはクラスが定義された後、またはモジュールがインポートされた後、この正規名が任意の名前空間で意味を持つという保証はありません。これらの名前は、オブジェクトの作成後に変更することもできるため、必ずしも特に信頼できるとは限りません。 変数の名前を文字列として取得する方法はまだあります。ただし、変数名を抽出するには、変数名の文字列を知っている必要があります。また、これは変数名の逆検索です。したがって