You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement the following statistical functionalities for relations between two NadaArrays, modelled after the Python statistics module:
Correlation
Covariance
Linear regression
Description
The new features should be integrated into the nada-numpy library and should operate on two NadaArray objects. The functionalities should be defined as follows:
Correlation: Calculate and return Pearson's correlation coefficient between two NadaArray objects.
Covariance: Compute and return the sample covariance between two NadaArray objects.
Linear Regression: Perform a simple linear regression on the two NadaArray objects and return a tuple (slope, intercept) representing the best-fit line.
Each function should take two NadaArray objects as input and output the respective statistical measure.
Request new
nada-numpy
featureImplement the following statistical functionalities for relations between two
NadaArray
s, modelled after the Pythonstatistics
module:Description
The new features should be integrated into the
nada-numpy
library and should operate on twoNadaArray
objects. The functionalities should be defined as follows:NadaArray
objects.NadaArray
objects.NadaArray
objects and return a tuple(slope, intercept)
representing the best-fit line.Each function should take two
NadaArray
objects as input and output the respective statistical measure.Reference material
statistics
The text was updated successfully, but these errors were encountered: