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
For example, in spreadsheets, you would reference the first row as ``A1:Z1``, while in pandas you
60
+
could use ``populations.loc['Chicago']``.
58
61
59
62
Index values are also persistent, so if you re-order the rows in a ``DataFrame``, the label for a
60
63
particular row don't change.
@@ -247,11 +250,81 @@ Sorting by values
247
250
Sorting in spreadsheets is accomplished via `the sort dialog <https://support.microsoft.com/en-us/office/sort-data-in-a-range-or-table-62d0b95d-2a90-4610-a6ae-2e545c4a4654>`_.
248
251
249
252
.. image:: ../../_static/excel_sort.png
250
-
:alt:Screenshot dialog from Excel showing sorting by the sex then total_bill columns
253
+
:alt:Screenshot of dialog from Excel showing sorting by the sex then total_bill columns
251
254
:align:center
252
255
253
256
.. include:: includes/sorting.rst
254
257
258
+
String processing
259
+
-----------------
260
+
261
+
Finding length of string
262
+
~~~~~~~~~~~~~~~~~~~~~~~~
263
+
264
+
In spreadsheets, the number of characters in text can be found with the `LEN
0 commit comments