[FutureWarning] Resolving the warning related to the use of a single-element series. (#7813)

This commit is contained in:
Andrei Ivanov
2024-10-09 22:29:33 -07:00
committed by GitHub
parent 31115aece2
commit 433ffb34b1

View File

@@ -84,17 +84,22 @@ class EEGGraphDataset(DGLDataset):
def get_geodesic_distance(
self, montage_sensor1_idx, montage_sensor2_idx, coords_1010
):
def get_coord(ref_sensor, coord):
return float(
(coords_1010[coords_1010.label == ref_sensor][coord]).iloc[0]
)
# get the reference sensor in the 10-10 system for the current montage pair in 10-20 system
ref_sensor1 = self.ref_names[montage_sensor1_idx]
ref_sensor2 = self.ref_names[montage_sensor2_idx]
x1 = float(coords_1010[coords_1010.label == ref_sensor1]["x"])
y1 = float(coords_1010[coords_1010.label == ref_sensor1]["y"])
z1 = float(coords_1010[coords_1010.label == ref_sensor1]["z"])
x1 = get_coord(ref_sensor1, "x")
y1 = get_coord(ref_sensor1, "y")
z1 = get_coord(ref_sensor1, "z")
x2 = float(coords_1010[coords_1010.label == ref_sensor2]["x"])
y2 = float(coords_1010[coords_1010.label == ref_sensor2]["y"])
z2 = float(coords_1010[coords_1010.label == ref_sensor2]["z"])
x2 = get_coord(ref_sensor2, "x")
y2 = get_coord(ref_sensor2, "y")
z2 = get_coord(ref_sensor2, "z")
# https://math.stackexchange.com/questions/1304169/distance-between-two-points-on-a-sphere
r = 1 # since coords are on unit sphere