We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 159ce3b commit 50b01e3Copy full SHA for 50b01e3
pandas/io/formats/info.py
@@ -226,12 +226,17 @@
226
Series.describe: Generate descriptive statistics of Series.
227
Series.memory_usage: Memory usage of Series."""
228
)
229
+series_max_cols_sub = dedent(
230
+ """\
231
+ max_cols : int, optional
232
+ Unused, exists only for compatibility with DataFrame.info."""
233
+)
234
235
236
series_sub_kwargs = {
237
"klass": "Series",
238
"type_sub": "",
- "max_cols_sub": "",
239
+ "max_cols_sub": series_max_cols_sub,
240
"show_counts_sub": show_counts_sub,
241
"examples_sub": series_examples_sub,
242
"see_also_sub": series_see_also_sub,
0 commit comments