This example shows the steps to composite line plot.
- Generating composite plot on a custom figure.
- Generating the JPEG image instead of default PNG image.
Example
>>> load_example_data("movavg", "ibm_stock")
>>> ibm_stock = DataFrame("ibm_stock")
>>> ibm_stock
name period stockprice id 223 ibm 62/04/05 521.0 19 ibm 61/06/13 487.0 263 ibm 62/06/01 364.0 61 ibm 61/08/11 497.0 183 ibm 62/02/07 552.0 265 ibm 62/06/05 370.0 244 ibm 62/05/04 475.0 305 ibm 62/08/01 385.0 326 ibm 62/08/30 387.0 122 ibm 61/11/08 596.0
>>> from teradataml import Figure
>>> figure = Figure(width=800, height=900, image_type="jpg", heading="Composite Plot")
>>> df = ibm_stock.assign(double_price=ibm_stock.stockprice * 2)
>>> df.plot(x=df.period, y=[df.stockprice, df.double_price], style=['dark orange', 'sand'], figure=figure)