reindexメソッドをつかい、列と行のラベルを付けかえてみたのですが、DataFrameの値すべてがNaNになってしまいます。間違いなど、どうぞご指摘ください。
python
1import numpy as np 2import pandas as pd 3 4# 任意のDataFrameを作る 5df=pd.DataFrame(np.arange(6).reshape(2,3),index=['A','B'],columns=['C','D','E']) 6df
python
1df.reindex(index=['あ','い'])
python
1df.reindex(columns=['う','え','お'])
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/11 02:47