Skip to content

Commit 52c240a

Browse files
committed
Merge pull request #5282 from jorisvandenbossche/docs-api-add1b
DOC: add some missing entries to api docs
2 parents 5c6116c + ef2fc7e commit 52c240a

File tree

1 file changed

+39
-18
lines changed

1 file changed

+39
-18
lines changed

doc/source/api.rst

Lines changed: 39 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,11 @@ Data manipulations
132132
.. autosummary::
133133
:toctree: generated/
134134

135+
melt
135136
pivot_table
137+
crosstab
138+
cut
139+
qcut
136140
merge
137141
concat
138142
get_dummies
@@ -154,6 +158,9 @@ Top-level dealing with datetimes
154158

155159
to_datetime
156160
to_timedelta
161+
date_range
162+
bdate_range
163+
period_range
157164

158165
Top-level evaluation
159166
~~~~~~~~~~~~~~~~~~~~
@@ -175,12 +182,16 @@ Standard moving window functions
175182
rolling_median
176183
rolling_var
177184
rolling_std
185+
rolling_min
186+
rolling_max
178187
rolling_corr
188+
rolling_corr_pairwise
179189
rolling_cov
180190
rolling_skew
181191
rolling_kurt
182192
rolling_apply
183193
rolling_quantile
194+
rolling_window
184195

185196
Standard expanding window functions
186197
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -194,7 +205,10 @@ Standard expanding window functions
194205
expanding_median
195206
expanding_var
196207
expanding_std
208+
expanding_min
209+
expanding_max
197210
expanding_corr
211+
expanding_corr_pairwise
198212
expanding_cov
199213
expanding_skew
200214
expanding_kurt
@@ -474,6 +488,8 @@ Serialization / IO / Conversion
474488
Series.to_csv
475489
Series.to_dict
476490
Series.to_frame
491+
Series.to_hdf
492+
Series.to_json
477493
Series.to_sparse
478494
Series.to_string
479495
Series.to_clipboard
@@ -733,6 +749,7 @@ Serialization / IO / Conversion
733749
DataFrame.to_excel
734750
DataFrame.to_json
735751
DataFrame.to_html
752+
DataFrame.to_latex
736753
DataFrame.to_stata
737754
DataFrame.to_records
738755
DataFrame.to_sparse
@@ -933,6 +950,8 @@ Serialization / IO / Conversion
933950
Panel.from_dict
934951
Panel.to_pickle
935952
Panel.to_excel
953+
Panel.to_hdf
954+
Panel.to_json
936955
Panel.to_sparse
937956
Panel.to_frame
938957
Panel.to_clipboard
@@ -1039,24 +1058,26 @@ DatetimeIndex
10391058

10401059
Time/Date Components
10411060
~~~~~~~~~~~~~~~~~~~~
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
10601081

10611082

10621083
Selecting

0 commit comments

Comments
 (0)