(self)
| 2078 | return f"{class_name}{data}\n{footer}" |
| 2079 | |
| 2080 | def _get_repr_footer(self) -> str: |
| 2081 | # GH#24278 |
| 2082 | if self.ndim > 1: |
| 2083 | return f"Shape: {self.shape}, dtype: {self.dtype}" |
| 2084 | return f"Length: {len(self)}, dtype: {self.dtype}" |
| 2085 | |
| 2086 | def _repr_2d(self) -> str: |
| 2087 | from pandas.io.formats.printing import format_object_summary |
no outgoing calls
no test coverage detected