'libreoffice calc graph | scale in relation to each row of data
I have a list of data by year with expenses for each topic, eg.
2014 2015 ... expenses 1 12 14 exp. 2 321 339 exp. 3 43'334 42'991
As the different rows do have different scales, i.e. some are in the 10 some in the 1000s, I want a line graph that shows all data in relation to the scale of each row.
But with one scale for all data, most lines are flat at the bottom, while a few show up meaningful.
The graph should show the differences over time, i.e. if the curve remains flat, everything is the same, if it goes up and down, it shows changes.
Basically, it can be done by doing a graph for each row and then stacking the images over each other.
Solution 1:[1]
- Use a column that calculates the averages of each row.
- Use columns that calculate the relative value of each expense, for example in percent, in relation to the average of its row.
- Use these relative values for your diagram.
| 2014 abs | 2015 abs | ... | Average | 2014 rel | 2015 rel | ... | |
|---|---|---|---|---|---|---|---|
| exp.1 | 12 | 14 | ... | ... | ..% | ..% | ... |
| exp.2 | 321 | 339 | ... | ... | ..% | ..% | ... |
| exp.3 | 43'334 | 42'991 | ... | ... | ..% | ..% | ... |
You can add the columns to the same table or create a new table.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | the busybee |
