(self, pairs_weight)
| 1206 | return self |
| 1207 | |
| 1208 | def set_pairs_weight(self, pairs_weight): |
| 1209 | self._check_weight_type(pairs_weight) |
| 1210 | pairs_weight = self._if_pandas_to_numpy(pairs_weight) |
| 1211 | self._check_weight_shape(pairs_weight, self.num_pairs()) |
| 1212 | self._set_pairs_weight(pairs_weight) |
| 1213 | return self |
| 1214 | |
| 1215 | def set_timestamp(self, timestamp): |
| 1216 | self._check_timestamp_type(timestamp) |