You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can index by row label in a DataFrame using ix or xs -- e.g. df.ix['row_name'] or df.xs('row_name'). It would be nice to have a similar functionality in Table so you don't have to use select to get a specific row when you know the primary key.
You can index by row label in a
DataFrameusingixorxs-- e.g.df.ix['row_name']ordf.xs('row_name'). It would be nice to have a similar functionality inTableso you don't have to useselectto get a specific row when you know the primary key.