now I have some data sets in pandas Series form. I want to create an Excel spreadsheet dashboard by using xlsxwriter. the first column is the name
and the second column is Sparklines.
I see in xlsxwriter documentations if I want to add sparklines in excel, I have to add the data in excel sheet. is there any way to create a clean dashboard without adding data in the spreadsheet?
can anyone provide a brief example on how to create a dashboard like this?
my data is:
import pandas as pd
import quandl
import xlsxwriter
copper=quandl.get('CHRIS/CME_HG4',authtoken='4dJ-CbqBE8Kzp_H4T9qe',start_date='2019-01-01')['Settle']
gold=quandl.get("CHRIS/CME_GC1", authtoken="4dJ-CbqBE8Kzp_H4T9qe",start_date='2019-01-01')['Settle']
oil=quandl.get("CHRIS/CME_CL11", authtoken="4dJ-CbqBE8Kzp_H4T9qe",start_date='2019-01-01')['Settle']
copper=copper/gold
oil=oil/gold
print(copper)
print(oil)