Idea Four

Since I have been working in agriculture for the past several years, the examples will come from that domain. However, the approaches described here are applicable to any field and any datasets.
Imagine you have several datasets over a certain period. The sampling frequency is not critical here, because time series can—and should—be normalized using basic mathematics. Newton interpolation polynomials, Gaussian curves, and other useful tools help here. Store the data in the format {id, date, value}. After normalizing date, all series are brought to a common form and become ready for comparison.
Using machine-learning algorithms and mathematical models such as SARIMAX, you can analyze the data and identify dependencies between comparable series in the form of functions. But rather than diving into a long and boring explanation of AI and neural network training, let’s skip that part. I am sure your own "neural network," located in your head, can do just fine.
Suppose we have several time series:
— Milk yield: the average daily milk yield per cow in a region.
— The average air temperature in the region.
— The amount of feed given to the animals.
— An abstract indicator of the subsidy amount available per animal at a given yield level.
Of course, I partly made these indicators up, but they are good enough for an example.
Now imagine that you have visualized these data on a chart. I used Chart.js for that, but you can choose any library you like. Looking at the chart, you might assume that as air temperature rises, milk yield also rises. Apparently cows like warmth, and sunshine, it seems, also supports lactation. You can also see that increasing feed has a positive effect on yield.