| 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.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.