Currently, standard errors of equating (SEE) are only available for random groups designs.
Random Groups
Standard errors of equating are calculated using mean_se() (mean equating) and linear_se() (linear equating). mean_se() has two arguments: formX and formY. Each are an array of raw scores on each form. linear_se() has the arguments of formX and formY in addition to an optional y_scores. The optional argument allows users to specify a range of scores to calculate the SEE for. If a range is not specified, the default is to use all unique values in form Y.
#Calculate SEE for mean equatingeq.mean_se(formx['x'], formy['x'])#Calcualte SEE for linear equatingeq.linear_se(formx['x'], formy['x'])