is it possible to create a column from delayed function in Dask?
e.g. if we create a column in pyspark by df.withColumn('datetime', F.lit(datetime.now())
the value of this column is not calculated until we request.
My question is - can we do similar thing in Dask? As far as i know dask is also lazy by default, but it seems like there is no way to achieve the same result as using pyspark?