I have one data frame and I would like to create a second dataframe using only select index values from the first data frame.
for example:
If I wanted dataframe 2 to be only index values- (47,55,69) from dataframe 1 I would like all of the data within the row from each index value to be transferred
df2 = df.iloc[[47,55,69]]?