请问我有一个简单的问题,但我无法在任何地方看到答案。 我的出发点是一个包含多列的pandas数据帧。我需要按位置选择其中一列,并最终将此列转换为系列。
df = pd.Dataframe(no.random.randn(20,2), columns=['a','b'])
price = df.iloc[:,[1]] # this should give us a dataframe still
我试过了:
price_series = pd.Series(price)
但它没有用。