Data Statistics & Regression is a plugin that helps generating data regression, prediction and basic data statistics.
Takes as input 2 lists of numbers (X and Y) do some magic on it (regression), and returns a new list of numbers that is the Y values of the trend line.
We have been looking for something like this for some time. So thank you! We have time series data, where the x axis is a date. I assume for this X axis data we just ensure the data is sorted ASC by date and convert the date to a number so it’s monotonically increasing? Example: 20230103,20230104,20230105
Hi River.
Apologize for my delayed response. I just noticed you comment here.
Yes, you would need to sort the data first and pass the X and Y values ordered the same way,
Thanks for the response. Perhaps I wasn’t too clear. I’m referring to multivariant linear regression. I.e. Instead of just one independent variable it can include multiple independent variables: Y = b0 + b1 * X1 + b2 * X2 + … + bn * Xn
Hey @Atomily did you find any other way to achieve this? Yesterday, while testing, we found that the plugin only calculates the regression on Y values and are looking to achieve a correlation of 2 different variables.