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

PythonPandas-入力ラベルのスライスインデクサーを計算します


入力ラベルのスライスインデクサーを計算するには、 index.slice_indexer()を使用します 方法。まず、必要なライブラリをインポートします-

import pandas as pd

Pandasインデックスオブジェクトを作成する-

index = pd.Index(list('pqrstuvwxyz'))

パンダのインデックスを表示する-

print("Pandas Index...\n",index)

スライスインデクサーを取得します。 「スタート」は最初のラベルです。 「end」は-

で終わるラベルです
print("\nThe slice indexer with start and stop...\n",index.slice_indexer(start='s', end='w'))

以下はコードです-

import pandas as pd

# create Pandas index object
index = pd.Index(list('pqrstuvwxyz'))

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Get the slice indexer
# The "start" is the label to begin with
# The "end" is the label to end with
print("\nThe slice indexer with start and stop...\n",index.slice_indexer(start='s', end='w'))

出力

これにより、次の出力が生成されます-

Pandas Index...
Index(['p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'], dtype='object')

Number of elements in the index...
11

The slice indexer with start and stop...
slice(3, 8, None)

  1. PythonPandas-インデックスに一意の値を返します

    インデックスで一意の値を返すには、 index.unique()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index([10, 50, 70, 10, 90, 50, 10, 30]) パンダのインデックスを表示する- print("Pandas Index...\n",index) インデックスから一意の値を取得します。一意の値が出現順に返されますが、これはソートされません- index.unique() 例 以下はコードです- impo

  2. Python-PandasIndexがフローティングタイプかどうかを確認します

    Pandas Indexがフローティングタイプであるかどうかを確認するには、 index.is_floating()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index([5.7, 6.8, 10.5, 20.4, 25.6, 30.8, 40.5, 50.2]) パンダのインデックスを表示する- print("Pandas Index...\n",index) インデックス値に浮動小数点数しかないかどうかを確認します- print("