you can get the index via grep and colnames:
grep("B", colnames(df))
[1] 2
or use
grep("^B$", colnames(df))
[1] 2
to only get the columns called “B” without those who contain a B e.g. “ABC”.
you can get the index via grep and colnames:
grep("B", colnames(df))
[1] 2
or use
grep("^B$", colnames(df))
[1] 2
to only get the columns called “B” without those who contain a B e.g. “ABC”.