我有以下代码尝试计算dask系列的平方根
my_dask_df['a_column'] = numpy.sqrt(my_dask_df['a_column'])
我得到的是以下异常:
ValueError: Not all divisions are known, can't align partitions. Please use `set_index` to set the index.
如何计算dask系列的平方根?
最佳答案
使用**
运算符或da.sqrt
函数
df.x ** 0.5
# or
import dask.array as da
da.sqrt(df.x)
关于python - 平方系列的平方根,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48076753/