0
Python 3を使用してcar_dataシリーズを印刷するにはどうすればよいですか?Python 3を使用して、カテゴリ付きのパンダシリーズを印刷する方法
import pandas as pd
car_colors = pd.Series(['Blue', 'Red', 'Green'], dtype='category')
car_data = pd.Series(pd.Categorical(['Yellow', 'Green', 'Red', 'Blue', Purple'], categories=car_colors, ordered=False))
print(str(car_colors)) # works
# both print statements below give this error:
# ValueError: object __array_method not producing an array
print(str(car_data))
print(car_data.to_string())