smallpond.dataframe.DataFrame.recompute#

DataFrame.recompute() DataFrame#

Always recompute the data regardless of whether it’s already computed.

Examples#

Modify the code as follows and rerun:

- df = input.select('a')
+ df = input.select('b').recompute()

The result of input can be reused.