What is the difference between df.iloc[[i]] and df.iloc[i]?
I recognize df.iloc[[i]] represents matrix's i-row (parallel shape), but
de.iloc[i] represents matrix's i-row as like Vertical shape.
I wonder why de.iloc[i] shows vertical shape.