nu is mijn vraag ik heb meerdere reeksen van ruim 50000 data punten die ik moet analyseren deze data punten zijn per seconde genomen door een sensor/meter en geplot/dumpt in een excel bestand echter zou ik graag ipv per seconde per minuut of per 2 minuten willen plotten in een grafiek op een eenvouddige manier. is dat mogelijk? wie kan mij daar bij helpen?
alvast bedank nomni
in de bijlage wou ik een stukkje document doen om een beter beeld te geven echter blijft deze te groot voor hier
--
citaat
Let's say your data are in column A, starting in A2:
If you'd like to plot every 5th point:
- Enter the following formula in another cell in row 2, say in C2:
<code>
=OFFSET($A$2,5*(ROW()-ROW($A$2)),0)
</code>
- Fill down as far as needed for 1/5th of the number of data points.
- Create a chart based on the new column.
- You can change 5 to another number of course.
You could also take the average of every (say) 5 data points:
- Enter the following formula in another cell in row 2, say in C2:
<code>
=AVERAGE(OFFSET($A$2,5*(ROW()-ROW($A$2)),0,5))
</code>
- Fill down as far as needed for 1/5th of the number of data points.
- Create a chart based on the new column.
- You can change 5 to another number of course.