1 | initial version |
The current way to do this is
r('cars').subset(select='"speed"')
or
r.subset('cars', select='"speed"')
You need to use double quotes for strings when passing them into the interface. Otherwise, speed will be treated as an "identifier" rather than a string. Additionally,
r('cars')['"speed"']
also works.