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
raiseValueError(f"The number of rows in the new variance_weights vector ({n}) must match the number of rows in the existing vector ({self.num_observations()}).")
138
138
self.rfx_dataset_cpp.UpdateVarianceWeights(variance_weights, n, exponentiate)
139
+
140
+
defget_group_labels(self) ->np.array:
141
+
"""
142
+
Return the group labels in a RandomEffectsDataset as a numpy array
143
+
144
+
Returns
145
+
-------
146
+
np.array
147
+
One-dimensional numpy array of group labels.
148
+
"""
149
+
returnself.rfx_dataset_cpp.GetGroupLabels()
150
+
151
+
defget_basis(self) ->np.array:
152
+
"""
153
+
Return the bases in a RandomEffectsDataset as a numpy array
154
+
155
+
Returns
156
+
-------
157
+
np.array
158
+
Two-dimensional numpy array of basis vectors.
159
+
"""
160
+
returnself.rfx_dataset_cpp.GetBasis()
161
+
162
+
defget_variance_weights(self) ->np.array:
163
+
"""
164
+
Return the variance weights in a RandomEffectsDataset as a numpy array
0 commit comments