@@ -132,7 +132,11 @@ Data manipulations
132
132
.. autosummary ::
133
133
:toctree: generated/
134
134
135
+ melt
135
136
pivot_table
137
+ crosstab
138
+ cut
139
+ qcut
136
140
merge
137
141
concat
138
142
get_dummies
@@ -154,6 +158,9 @@ Top-level dealing with datetimes
154
158
155
159
to_datetime
156
160
to_timedelta
161
+ date_range
162
+ bdate_range
163
+ period_range
157
164
158
165
Top-level evaluation
159
166
~~~~~~~~~~~~~~~~~~~~
@@ -175,12 +182,16 @@ Standard moving window functions
175
182
rolling_median
176
183
rolling_var
177
184
rolling_std
185
+ rolling_min
186
+ rolling_max
178
187
rolling_corr
188
+ rolling_corr_pairwise
179
189
rolling_cov
180
190
rolling_skew
181
191
rolling_kurt
182
192
rolling_apply
183
193
rolling_quantile
194
+ rolling_window
184
195
185
196
Standard expanding window functions
186
197
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -194,7 +205,10 @@ Standard expanding window functions
194
205
expanding_median
195
206
expanding_var
196
207
expanding_std
208
+ expanding_min
209
+ expanding_max
197
210
expanding_corr
211
+ expanding_corr_pairwise
198
212
expanding_cov
199
213
expanding_skew
200
214
expanding_kurt
@@ -474,6 +488,8 @@ Serialization / IO / Conversion
474
488
Series.to_csv
475
489
Series.to_dict
476
490
Series.to_frame
491
+ Series.to_hdf
492
+ Series.to_json
477
493
Series.to_sparse
478
494
Series.to_string
479
495
Series.to_clipboard
@@ -733,6 +749,7 @@ Serialization / IO / Conversion
733
749
DataFrame.to_excel
734
750
DataFrame.to_json
735
751
DataFrame.to_html
752
+ DataFrame.to_latex
736
753
DataFrame.to_stata
737
754
DataFrame.to_records
738
755
DataFrame.to_sparse
@@ -933,6 +950,8 @@ Serialization / IO / Conversion
933
950
Panel.from_dict
934
951
Panel.to_pickle
935
952
Panel.to_excel
953
+ Panel.to_hdf
954
+ Panel.to_json
936
955
Panel.to_sparse
937
956
Panel.to_frame
938
957
Panel.to_clipboard
@@ -1039,24 +1058,26 @@ DatetimeIndex
1039
1058
1040
1059
Time/Date Components
1041
1060
~~~~~~~~~~~~~~~~~~~~
1042
- * **year **
1043
- * **month **
1044
- * **day **
1045
- * **hour **
1046
- * **minute **
1047
- * **second **
1048
- * **microsecond **
1049
- * **nanosecond **
1050
-
1051
- * **weekofyear **
1052
- * **week **: Same as weekofyear
1053
- * **dayofweek **: (0=Monday, 6=Sunday)
1054
- * **weekday **: (0=Monday, 6=Sunday)
1055
- * **dayofyear **
1056
- * **quarter **
1057
-
1058
- * **date **: Returns date component of Timestamps
1059
- * **time **: Returns time component of Timestamps
1061
+
1062
+ .. autosummary ::
1063
+ :toctree: generated/
1064
+
1065
+ DatetimeIndex.year
1066
+ DatetimeIndex.month
1067
+ DatetimeIndex.day
1068
+ DatetimeIndex.hour
1069
+ DatetimeIndex.minute
1070
+ DatetimeIndex.second
1071
+ DatetimeIndex.microsecond
1072
+ DatetimeIndex.nanosecond
1073
+ DatetimeIndex.date
1074
+ DatetimeIndex.time
1075
+ DatetimeIndex.dayofyear
1076
+ DatetimeIndex.weekofyear
1077
+ DatetimeIndex.week
1078
+ DatetimeIndex.dayofweek
1079
+ DatetimeIndex.weekday
1080
+ DatetimeIndex.quarter
1060
1081
1061
1082
1062
1083
Selecting
0 commit comments