Hi, this is a very nice platform, iam new to here
i have difficult to compute the columns wise median:
i have serval factors: factor1, factor2, factor3, factor4.....
how can i calculate the median of these factors?
i tried :
np.median(pd.concat([factor1, factor2, factor3, factor4....]),axis=0)
TypeError: cannot concatenate a non-NDFrame object
np.median(pd.DataFrame([factor1, factor2, factor3, factor4....]),axis=0)
TypeError: zipline.pipeline.pipeline.validate_column() expected a value of type zipline.pipeline.term.Term for argument 'term', but got numpy.ndarray instead.
Any help from you will be greatly appreciated