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 @@ -159,8 +159,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
159
159
-i " pandas.Series.str.replace SA01" \
160
160
-i " pandas.Series.str.wrap RT03,SA01" \
161
161
-i " pandas.Series.str.zfill RT03" \
162
- -i " pandas.Series.struct.dtypes SA01" \
163
- -i " pandas.Series.to_markdown SA01" \
164
162
-i " pandas.Timedelta.asm8 SA01" \
165
163
-i " pandas.Timedelta.ceil SA01" \
166
164
-i " pandas.Timedelta.components SA01" \
Original file line number Diff line number Diff line change @@ -244,6 +244,10 @@ def dtypes(self) -> Series:
244
244
pandas.Series
245
245
The data type of each child field.
246
246
247
+ See Also
248
+ -------
249
+ Series.dtype: Return the dtype object of the underlying data.
250
+
247
251
Examples
248
252
--------
249
253
>>> 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