I'm trying HDDM for the first time so I might be doing something dumb, but I'm getting errors that look like they are caused by Series no longer being an NDArray in pandas 0.13.
See gist here with data file, script, and the full traceback.
The short version is that
hddm.HDDM(df)
takes a long and winding road to raising
TypeError: Argument 'x' has incorrect type (expected numpy.ndarray, got Series)
I'm trying HDDM for the first time so I might be doing something dumb, but I'm getting errors that look like they are caused by
Series
no longer being anNDArray
in pandas 0.13.See gist here with data file, script, and the full traceback.
The short version is that
takes a long and winding road to raising
with
I installed
pandas
from the github release right before doing this (it's not on PyPi for some reason).