Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Research environment question

Sorry for such a beginner question, but I can't find the answer anywhere. I'm just learning and am first trying to learn the Notebook area. I'm wanting to return an output of just the minute data of 'aapl' for a month. The output shows 20 or so rows, then a row of ... ... .. then the ending 20 rows. How do I get the result to show me the whole list and not have it broken up?

Here's my code. I tried using display.max_rows but it didn't like that.

Thanks in advance for the assistance.

import pandas as pd

pd.set_option('display.max_rows', 500) #This is where it doesn't work

papple=get_pricing('aapl',start_date='2017-01-01',end_date='2017-02-01',frequency='minute')
papple.index.tz = 'US/Eastern'
papple