We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 522563c commit f90a7c8Copy full SHA for f90a7c8
doc/source/getting_started/comparison/comparison_with_spreadsheets.rst
@@ -115,6 +115,17 @@ would be:
115
# alternatively, read_table is an alias to read_csv with tab delimiter
116
tips = pd.read_table("tips.csv", header=None)
117
118
+
119
+Limiting output
120
+~~~~~~~~~~~~~~~
121
122
+Spreadsheet programs will only show one screenful of data at a time and then allow you to scroll, so
123
+there isn't really a need to limit output. In pandas, you'll need to put a little more thought into
124
+controlling how your ``DataFrame``\s are displayed.
125
126
+.. include:: includes/limit.rst
127
128
129
Exporting data
130
~~~~~~~~~~~~~~
131
0 commit comments