I have a dataset similar to the sample given below:
| Week | val1 | val2 |
|------------|--------|------|
| 11/13/2017 | 21785 | 966 |
| 11/20/2017 | 71679 | 3395 |
| 11/27/2017 | 113846 | 5060 |
| 12/4/2017 | 106899 | 5730 |
| 12/11/2017 | 99212 | 5682 |
| 12/18/2017 | 99788 | 4838 |
Sample input
rng = ['11/13/2017','11/20/2017','11/27/2017','12/4/2017','12/11/2017','12/18/2017']
val1= [21785,71679,113846,106899,99212,99788]
val2= [966,3395,5060,5730,5682,4838]
df = pd.DataFrame({ 'Date': rng, 'val1': val1, 'val2': val2})
df
I need to calculate the percentage difference between rows and plot it using plotly as multiple line charts in one graph. I know that I can calculate the percentage difference using df.pct_change() but I'm facing issue while plotting it as I need to set the 'week' column as index for calculating percentage difference. Is there any other way round?
You can use
pct_change()
to specify the time series withfreq='7D'
.Is this what you intend to do?