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.
The content on this page is licensed under the Creative Commons Attribution 4.0 License
(CC BY 4.0) ,
and code samples are licensed under the MIT License.