I know that we can extract the data from a dataframe on a [x,y] coordinate basis, like as follows:
df[[144]][[1]]
And we can also extract the data from a dataframe on a column name basis, like as follows:
df$column.name[[row.num]] or df[["column.name"]][[row.num]]
I just wanted to ask that is there a way for extracting the data from a dataframe on a column name And also on a row name basis? Something like:
df[["column.name"]][["row.name"]]