0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

`pandas.Series.unique`は`pandas.Series`ではなくnumpy arrayを返す

Posted at

環境

  • pandas 2.0.3
  • Python 3.12.4

内容

pandas.Seriesオブジェクトから、ソートされた一意な値のlistを取得する関数を書きました。

def get_sorted_unique_values(ser: pandas.Series) -> list[float]:
    ser.unique().sort_values().to_list()

実行すると、以下のエラーが発生しました。

E       AttributeError: 'numpy.ndarray' object has no attribute 'sort_values'

pandas.Series.uniquepandas.Sereisを返すことを期待していましたが、実際は numpy array を返しました。

The unique values returned as a NumPy array.

pandas.Seriesの世界でコードを書くならば、pandas.Series.drop_duplicatesを使った方が良いようです。

Series.drop_duplicates : Return Series with duplicate values removed.
unique : Top-level unique method for any 1-d array-like object.
Index.unique : Return Index with unique values from an Index object.

参考サイト

もともとuniqueがあって、あとからSeriesを返すdrop_duplicatedができたようです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?