File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -142,8 +142,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
142
142
-i " pandas.Series.sparse.sp_values SA01" \
143
143
-i " pandas.Series.sparse.to_coo PR07,RT03,SA01" \
144
144
-i " pandas.Series.std PR01,RT03,SA01" \
145
- -i " pandas.Series.struct.dtypes SA01" \
146
- -i " pandas.Series.to_markdown SA01" \
147
145
-i " pandas.Timedelta.asm8 SA01" \
148
146
-i " pandas.Timedelta.ceil SA01" \
149
147
-i " pandas.Timedelta.components SA01" \
Original file line number Diff line number Diff line change @@ -258,6 +258,10 @@ def dtypes(self) -> Series:
258
258
pandas.Series
259
259
The data type of each child field.
260
260
261
+ See Also
262
+ --------
263
+ Series.dtype: Return the dtype object of the underlying data.
264
+
261
265
Examples
262
266
--------
263
267
>>> import pyarrow as pa
Original file line number Diff line number Diff line change @@ -1617,6 +1617,11 @@ def to_markdown(
1617
1617
str
1618
1618
{klass} in Markdown-friendly format.
1619
1619
1620
+ See Also
1621
+ --------
1622
+ Series.to_frame : Rrite a text representation of object to the system clipboard.
1623
+ Series.to_latex : Render Series to LaTeX-formatted table.
1624
+
1620
1625
Notes
1621
1626
-----
1622
1627
Requires the `tabulate <https://pypi.org/project/tabulate>`_ package.
You can’t perform that action at this time.
0 commit comments