Hi,
I am trying to get the result of the below Dask sequence of operations as an ordinary number.
Unfortunately, in the Jupyter environment that I am using, the .compute() approach is not allowed for Dask.
Is there any other way by which this can be done or achieved?
import dask.dataframe as dd
import pandas as pd
df = pd.DataFrame({'values': [10, 20, 30, 40, 50]})
ddf = dd.from_pandas(df, npartitions=1)
result = (ddf['values'].sum() * 8) / 1e3
print(result)
I am getting the below result
<dask_expr.expr.Scalar: expr=df[‘values’].sum() * 8 / 1000.0, dtype=float64>