I am currently getting a RayforceTypeError when trying to select the median of a column.
from rayforce.types import *
t = Table({'id': Vector([1, 2, 3], ray_type=U8),
'name': Vector(['Alice', 'Bob', 'Carol']),
'height': Vector([1.65, 1.74, 1.85], ray_type=F64)})
med_height = t.select(median_height=Column('height').median()).execute()