Is it possible to change the background in a pandas chart?
I would like to change the background from white and the line to orange but I cannot find any documentation to do that.
I am using the pandas as follows:
import pandas.io.data as web
import numpy as np
gs = web.get_data_yahoo('gs')['Close']
gs = gs.pct_change()
gs.plot()
Is it possible to change the background to black or any other color?
