|
|
|
|
|
by slt2021
1466 days ago
|
|
timeseries is usually specific to use cases when you data represents some signal over time, like temperature reading, stock price, etc. so you need 2 components: timestamp and signal reading, in this case all specific timeseries analytics apply: sliding/tumbling window, avg per window, smoothing, autocorrelation and all other techniques from Digital Signal Processing/timeseries analytics. Your regular monthly Sales data of ACME Corp by product category and storeId - this is not timeseries, just general BI |
|
Great definition! Having worked for years on both energy and IoT applications, the argument here is that your "monthly sales data" is likely being aggregated from your time-series data (sales transactions over time). If you store the transaction data in a database like TimescaleDB, then continuous aggregates provide the straightforward method for keeping that aggregated, monthly sales data up-to-date. :-D!