0
我們可以使用.iloc
來索引大熊貓而不使用的行和列嗎?文檔說可能的索引按列號(不是標籤)沒有iloc?
使用DataFrame,在[]切片行內切片。
但是,當我想同時包括行和列,這是行不通的。
data = pandas.DataFrame(np.random.rand(10,5), columns = list('abcde'))
data[0:2] #only rows
data.iloc[0:2,0:3] # works.
data[0:2,0:3] # not working in python, but it works similarly in R
使用'.iloc []'有什麼問題? – MaxU
我首先學習了R,並不太習慣Python。另外,它需要更多的打字。 – alphabetagamma
在Pandas中,您希望使用'.loc [rows,columns]'作爲標籤切片或'.iloc [row#,col#]'來進行位置切片。文檔:http://pandas.pydata.org/pandas-docs/stable/indexing.html#slicing-ranges – MaxU