@@ -153,6 +153,7 @@ Top-level dealing with datetimes
153
153
:toctree: generated/
154
154
155
155
to_datetime
156
+ to_timedelta
156
157
157
158
Top-level evaluation
158
159
~~~~~~~~~~~~~~~~~~~~
@@ -253,10 +254,17 @@ Indexing, iteration
253
254
:toctree: generated/
254
255
255
256
Series.get
257
+ Series.at
258
+ Series.iat
256
259
Series.ix
260
+ Series.loc
261
+ Series.iloc
257
262
Series.__iter__
258
263
Series.iteritems
259
264
265
+ For more information on ``.at ``, ``.iat ``, ``.ix ``, ``.loc ``, and
266
+ ``.iloc ``, see the :ref: `indexing documentation <indexing >`.
267
+
260
268
Binary operator functions
261
269
~~~~~~~~~~~~~~~~~~~~~~~~~
262
270
.. autosummary ::
@@ -407,8 +415,49 @@ Time series-related
407
415
Series.tz_convert
408
416
Series.tz_localize
409
417
418
+ String handling
419
+ ~~~~~~~~~~~~~~~~~~~
420
+ ``Series.str `` can be used to access the values of the series as
421
+ strings and apply several methods to it. Due to implementation
422
+ details the methods show up here as methods of the
423
+ ``StringMethods `` class.
424
+
425
+ .. currentmodule :: pandas.core.strings
426
+
427
+ .. autosummary ::
428
+ :toctree: generated/
429
+
430
+ StringMethods.cat
431
+ StringMethods.center
432
+ StringMethods.contains
433
+ StringMethods.count
434
+ StringMethods.decode
435
+ StringMethods.encode
436
+ StringMethods.endswith
437
+ StringMethods.extract
438
+ StringMethods.findall
439
+ StringMethods.get
440
+ StringMethods.join
441
+ StringMethods.len
442
+ StringMethods.lower
443
+ StringMethods.lstrip
444
+ StringMethods.match
445
+ StringMethods.pad
446
+ StringMethods.repeat
447
+ StringMethods.replace
448
+ StringMethods.rstrip
449
+ StringMethods.slice
450
+ StringMethods.slice_replace
451
+ StringMethods.split
452
+ StringMethods.startswith
453
+ StringMethods.strip
454
+ StringMethods.title
455
+ StringMethods.upper
456
+
410
457
Plotting
411
458
~~~~~~~~
459
+ .. currentmodule :: pandas
460
+
412
461
.. autosummary ::
413
462
:toctree: generated/
414
463
@@ -476,7 +525,11 @@ Indexing, iteration
476
525
:toctree: generated/
477
526
478
527
DataFrame.head
528
+ DataFrame.at
529
+ DataFrame.iat
479
530
DataFrame.ix
531
+ DataFrame.loc
532
+ DataFrame.iloc
480
533
DataFrame.insert
481
534
DataFrame.__iter__
482
535
DataFrame.iteritems
@@ -489,6 +542,10 @@ Indexing, iteration
489
542
DataFrame.isin
490
543
DataFrame.query
491
544
545
+ For more information on ``.at ``, ``.iat ``, ``.ix ``, ``.loc ``, and
546
+ ``.iloc ``, see the :ref: `indexing documentation <indexing >`.
547
+
548
+
492
549
Binary operator functions
493
550
~~~~~~~~~~~~~~~~~~~~~~~~~
494
551
.. autosummary ::
@@ -733,14 +790,21 @@ Indexing, iteration, slicing
733
790
.. autosummary ::
734
791
:toctree: generated/
735
792
793
+ Panel.at
794
+ Panel.iat
736
795
Panel.ix
796
+ Panel.loc
797
+ Panel.iloc
737
798
Panel.__iter__
738
799
Panel.iteritems
739
800
Panel.pop
740
801
Panel.xs
741
802
Panel.major_xs
742
803
Panel.minor_xs
743
804
805
+ For more information on ``.at ``, ``.iat ``, ``.ix ``, ``.loc ``, and
806
+ ``.iloc ``, see the :ref: `indexing documentation <indexing >`.
807
+
744
808
Binary operator functions
745
809
~~~~~~~~~~~~~~~~~~~~~~~~~
746
810
.. autosummary ::
@@ -878,8 +942,9 @@ Serialization / IO / Conversion
878
942
Index
879
943
-----
880
944
881
- **Many of these methods or variants thereof are available on the objects that contain an index (Series/Dataframe)
882
- and those should most likely be used before calling these methods directly. **
945
+ **Many of these methods or variants thereof are available on the objects
946
+ that contain an index (Series/Dataframe) and those should most likely be
947
+ used before calling these methods directly. **
883
948
884
949
.. autosummary ::
885
950
:toctree: generated/
@@ -1026,7 +1091,7 @@ Conversion
1026
1091
1027
1092
..
1028
1093
HACK - see github issue #4539. To ensure old links remain valid, include
1029
- here the autosummaries with previous currentmodules as a comment and add
1094
+ here the autosummaries with previous currentmodules as a comment and add
1030
1095
them to a hidden toctree (to avoid warnings):
1031
1096
1032
1097
.. toctree ::
0 commit comments