python/pandas/jupyter\344\270\212\343\201\247DataFrame\343\202\222\345\205\250\343\201\246\350\241\250\347\244\272\343\201\231\343\202\213.md
... ...
@@ -0,0 +1,7 @@
1
+参考: [Pandas: Setting no. of max rows](https://stackoverflow.com/questions/16424493/pandas-setting-no-of-max-rows)
2
+
3
+```
4
+import pandas as pd
5
+pd.set_option('display.max_rows', 1000)
6
+pd.set_option('display.max_columns', 500)
7
+```
... ...
\ No newline at end of file