@@ -32,25 +32,25 @@ Selection
3232
3333The :ref: `indexing <indexing >` docs.
3434
35- `Boolean Rows Indexing
35+ Indexing using both row labels and conditionals, see
36+ `here
3637<http://stackoverflow.com/questions/14725068/pandas-using-row-labels-in-boolean-indexing> `__
37- Indexing using both row labels and conditionals
3838
39- `Using loc and iloc in selections
39+ Use loc for label-oriented slicing and iloc positional slicing, see
40+ `here
4041<https://github.com/pydata/pandas/issues/2904> `__
41- Use loc for label-oriented slicing and iloc positional slicing
4242
43- `Extending a panel along the minor axis
43+ Extend a panel frame by transposing, adding a new dimension, and transposing back to the original dimensions, see
44+ `here
4445<http://stackoverflow.com/questions/15364050/extending-a-pandas-panel-frame-along-the-minor-axis> `__
45- Extend a panel frame by transposing, adding a new dimension, and transposing back to the original dimensions
4646
47- `Boolean masking in a panel
47+ Mask a panel by using ``np.where `` and then reconstructing the panel with the new masked values
48+ `here
4849<http://stackoverflow.com/questions/14650341/boolean-mask-in-pandas-panel> `__
49- Mask a panel by using ``np.where `` and then reconstructing the panel with the new masked values
5050
51- `Selecting via the complement
51+ Using ``~ `` to take the complement of a boolean array, see
52+ `here
5253<http://stackoverflow.com/questions/14986510/picking-out-elements-based-on-complement-of-indices-in-python-pandas> `__
53- ``~ `` can be used to take the complement of a boolean array
5454
5555`Efficiently creating columns using applymap
5656<http://stackoverflow.com/questions/16575868/efficiently-creating-additional-columns-in-a-pandas-dataframe-using-map> `__
0 commit comments