datatable.Namespace.__getattribute__()¶
Retrieve a column from the namespace by name.
This is a convenience form that can be used to access simply-named
columns. For example: f.Age denotes a column called "Age",
and is exactly equivalent to f['Age'].
Parameters¶
name
strName of the column to select.
return
FExprAn expression that selects the specified column from a frame.
See also¶
__getitem__()– retrieving columns via the[]-notation.