-2

I just started learning python today so bear with me on this one. Every time i tried to pull a the historical price from Yahoo Finance using pandas-datareader, the output has always been like this enter image description here

Based on the attached image, the output does not show the full row of the historical prices, how can i change it so it will provide the full row of the prices. I've tried to do the set_option, but it didn't work. (See the image on the link below) enter image description here

Thank you very much

1 Answers1

0

try .options instead of .set_options

pd.options.display.max_rows = 4000
seven_seas
  • 703
  • 4
  • 21