File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -144,8 +144,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
144
144
-i " pandas.Series.std PR01,RT03,SA01" \
145
145
-i " pandas.Series.str.wrap RT03,SA01" \
146
146
-i " pandas.Series.str.zfill RT03" \
147
- -i " pandas.Series.struct.dtypes SA01" \
148
- -i " pandas.Series.to_markdown SA01" \
149
147
-i " pandas.Timedelta.asm8 SA01" \
150
148
-i " pandas.Timedelta.ceil SA01" \
151
149
-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