December 2017
Intermediate to advanced
386 pages
10h 42m
English
Consider the following query, which identifies all stocks with a price less than 100:

This result can then be applied to the DataFrame using the [] operator to return only the rows where the result was true:

Multiple conditions can be put together using parentheses. The following retrieves the symbols and price for all stocks with a price between 6 and 10:

It is common to perform selection using multiple variables. The following ...
Read now
Unlock full access