You want:
> nerv[5,2]
[1] 5
The general pattern is [r, c] where r indexes the rows, and c indexes the columns/variables, that you want to extract. One or both of these can be missing, in which case, it means give me all of the rows/columns that do not have indexes. E.g.
> nerv[, 2] ## all rows, variable 2
[1] 1 2 3 4 5 6 7 8 9 10
> nerv[2, ] ## row 2, all variables
c.letters.1.10.. c.1.10.
2 b 2
Notice that for the first of those, R has dropped the empty dimension resulting in a vector. To suppress this behaviour, add drop = FALSE to the call:
> nerv[, 2, drop = FALSE] ## all rows, variable 2
c.1.10.
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
We can also use the list-style notation in extracting components of the data frame. [ will extract the component (column) as a one-column data frame, whilst [[ will extract the same thing but will drop dimensions. This behaviour comes from the usual behaviour on a list, where [ returns a list, whereas [[ returns the thing inside the indexed component. Some example might help:
> nerv[2]
c.1.10.
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
> nerv[[2]]
[1] 1 2 3 4 5 6 7 8 9 10
> nerv[[1:2]]
[1] 2
This also explains why nerv[2][5] failed for you. nerv[2] returns a data frame with a single column, which you then try to retrieve column 5 from.
The details of this are all included in the help file ?Extract.data.frame or ?`[[.data.frame`