I have a list mylist and I know how to call one of its object by its name
head(mylist$"26533")
[1] 39.67125 33.33558 33.75013 51.71748 47.86691 35.98055
But when I try to get the same result with using x,
x <- "26533"
head(mylist$x)
R tells me the result is NULL. Can anyone tell me what is the problem?