@@ -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
@@ -500,8 +504,12 @@ Serialization / IO / Conversion
500
504
Series.to_dict
501
505
Series.to_frame
502
506
Series.to_hdf
507
+ Series.to_sql
508
+ Series.to_gbq
509
+ Series.to_msgpack
503
510
Series.to_json
504
511
Series.to_sparse
512
+ Series.to_dense
505
513
Series.to_string
506
514
Series.to_clipboard
507
515
@@ -624,6 +632,7 @@ Computations / Descriptive Stats
624
632
:toctree: generated/
625
633
626
634
DataFrame.abs
635
+ DataFrame.all
627
636
DataFrame.any
628
637
DataFrame.clip
629
638
DataFrame.clip_lower
@@ -666,6 +675,7 @@ Reindexing / Selection / Label manipulation
666
675
DataFrame.drop
667
676
DataFrame.drop_duplicates
668
677
DataFrame.duplicated
678
+ DataFrame.equals
669
679
DataFrame.filter
670
680
DataFrame.first
671
681
DataFrame.head
@@ -759,14 +769,18 @@ Serialization / IO / Conversion
759
769
DataFrame.to_pickle
760
770
DataFrame.to_csv
761
771
DataFrame.to_hdf
772
+ DataFrame.to_sql
762
773
DataFrame.to_dict
763
774
DataFrame.to_excel
764
775
DataFrame.to_json
765
776
DataFrame.to_html
766
777
DataFrame.to_latex
767
778
DataFrame.to_stata
779
+ DataFrame.to_msgpack
780
+ DataFrame.to_gbq
768
781
DataFrame.to_records
769
782
DataFrame.to_sparse
783
+ DataFrame.to_dense
770
784
DataFrame.to_string
771
785
DataFrame.to_clipboard
772
786
@@ -911,6 +925,7 @@ Reindexing / Selection / Label manipulation
911
925
Panel.add_prefix
912
926
Panel.add_suffix
913
927
Panel.drop
928
+ Panel.equals
914
929
Panel.filter
915
930
Panel.first
916
931
Panel.last
@@ -1039,6 +1054,7 @@ Modifying and Computations
1039
1054
Index.copy
1040
1055
Index.delete
1041
1056
Index.diff
1057
+ Index.sym_diff
1042
1058
Index.drop
1043
1059
Index.equals
1044
1060
Index.factorize
@@ -1197,8 +1213,13 @@ Indexing, iteration
1197
1213
GroupBy.groups
1198
1214
GroupBy.indices
1199
1215
GroupBy.get_group
1216
+
1217
+ .. currentmodule :: pandas
1218
+
1200
1219
Grouper
1201
1220
1221
+ .. currentmodule :: pandas.core.groupby
1222
+
1202
1223
Function application
1203
1224
~~~~~~~~~~~~~~~~~~~~
1204
1225
.. autosummary ::
@@ -1219,6 +1240,20 @@ Computations / Descriptive Stats
1219
1240
GroupBy.var
1220
1241
GroupBy.ohlc
1221
1242
1243
+ .. currentmodule :: pandas
1244
+
1245
+ Working with options
1246
+ --------------------
1247
+
1248
+ .. autosummary ::
1249
+ :toctree: generated/
1250
+
1251
+ describe_option
1252
+ reset_option
1253
+ get_option
1254
+ set_option
1255
+ option_context
1256
+
1222
1257
..
1223
1258
HACK - see github issue #4539. To ensure old links remain valid, include
1224
1259
here the autosummaries with previous currentmodules as a comment and add
0 commit comments