@@ -127,13 +127,15 @@ Data manipulations
127
127
:toctree: generated/
128
128
129
129
melt
130
+ pivot
130
131
pivot_table
131
132
crosstab
132
133
cut
133
134
qcut
134
135
merge
135
136
concat
136
137
get_dummies
138
+ factorize
137
139
138
140
Top-level missing data
139
141
~~~~~~~~~~~~~~~~~~~~~~
@@ -320,6 +322,7 @@ Computations / Descriptive Stats
320
322
:toctree: generated/
321
323
322
324
Series.abs
325
+ Series.all
323
326
Series.any
324
327
Series.autocorr
325
328
Series.between
@@ -362,6 +365,7 @@ Reindexing / Selection / Label manipulation
362
365
363
366
Series.align
364
367
Series.drop
368
+ Series.equals
365
369
Series.first
366
370
Series.head
367
371
Series.idxmax
@@ -422,22 +426,6 @@ Time series-related
422
426
Series.resample
423
427
Series.tz_convert
424
428
Series.tz_localize
425
- Series.year
426
- Series.month
427
- Series.day
428
- Series.hour
429
- Series.minute
430
- Series.second
431
- Series.microsecond
432
- Series.nanosecond
433
- Series.date
434
- Series.time
435
- Series.dayofyear
436
- Series.weekofyear
437
- Series.week
438
- Series.dayofweek
439
- Series.weekday
440
- Series.quarter
441
429
442
430
String handling
443
431
~~~~~~~~~~~~~~~~~~~
@@ -500,8 +488,12 @@ Serialization / IO / Conversion
500
488
Series.to_dict
501
489
Series.to_frame
502
490
Series.to_hdf
491
+ Series.to_sql
492
+ Series.to_gbq
493
+ Series.to_msgpack
503
494
Series.to_json
504
495
Series.to_sparse
496
+ Series.to_dense
505
497
Series.to_string
506
498
Series.to_clipboard
507
499
@@ -624,6 +616,7 @@ Computations / Descriptive Stats
624
616
:toctree: generated/
625
617
626
618
DataFrame.abs
619
+ DataFrame.all
627
620
DataFrame.any
628
621
DataFrame.clip
629
622
DataFrame.clip_lower
@@ -666,6 +659,7 @@ Reindexing / Selection / Label manipulation
666
659
DataFrame.drop
667
660
DataFrame.drop_duplicates
668
661
DataFrame.duplicated
662
+ DataFrame.equals
669
663
DataFrame.filter
670
664
DataFrame.first
671
665
DataFrame.head
@@ -759,14 +753,18 @@ Serialization / IO / Conversion
759
753
DataFrame.to_pickle
760
754
DataFrame.to_csv
761
755
DataFrame.to_hdf
756
+ DataFrame.to_sql
762
757
DataFrame.to_dict
763
758
DataFrame.to_excel
764
759
DataFrame.to_json
765
760
DataFrame.to_html
766
761
DataFrame.to_latex
767
762
DataFrame.to_stata
763
+ DataFrame.to_msgpack
764
+ DataFrame.to_gbq
768
765
DataFrame.to_records
769
766
DataFrame.to_sparse
767
+ DataFrame.to_dense
770
768
DataFrame.to_string
771
769
DataFrame.to_clipboard
772
770
@@ -911,6 +909,7 @@ Reindexing / Selection / Label manipulation
911
909
Panel.add_prefix
912
910
Panel.add_suffix
913
911
Panel.drop
912
+ Panel.equals
914
913
Panel.filter
915
914
Panel.first
916
915
Panel.last
@@ -1039,6 +1038,7 @@ Modifying and Computations
1039
1038
Index.copy
1040
1039
Index.delete
1041
1040
Index.diff
1041
+ Index.sym_diff
1042
1042
Index.drop
1043
1043
Index.equals
1044
1044
Index.factorize
@@ -1197,8 +1197,13 @@ Indexing, iteration
1197
1197
GroupBy.groups
1198
1198
GroupBy.indices
1199
1199
GroupBy.get_group
1200
+
1201
+ .. currentmodule :: pandas
1202
+
1200
1203
Grouper
1201
1204
1205
+ .. currentmodule :: pandas.core.groupby
1206
+
1202
1207
Function application
1203
1208
~~~~~~~~~~~~~~~~~~~~
1204
1209
.. autosummary ::
@@ -1219,6 +1224,20 @@ Computations / Descriptive Stats
1219
1224
GroupBy.var
1220
1225
GroupBy.ohlc
1221
1226
1227
+ .. currentmodule :: pandas
1228
+
1229
+ Working with options
1230
+ --------------------
1231
+
1232
+ .. autosummary ::
1233
+ :toctree: generated/
1234
+
1235
+ describe_option
1236
+ reset_option
1237
+ get_option
1238
+ set_option
1239
+ option_context
1240
+
1222
1241
..
1223
1242
HACK - see github issue #4539. To ensure old links remain valid, include
1224
1243
here the autosummaries with previous currentmodules as a comment and add
0 commit comments