I have a public Observable notebook (nb1) where I perform some data wrangling operations and assign the resulting data table to a variable 'data'. I import this variable in another public Observable notebook (nb2), load it in a database and setup an interactive visualization for it. My problem is that every time I load nb2, the variable 'data' is recomputed from scratch resulting in long wait times.
Is there some way I can make the data table computed for variable 'data' persist so that the visualization notebook nb2 can just use the precomputed data table and visualize the data quickly?
I tried locking the import dependency version hoping that once it is locked to a certain version, the data table will not be recomputed. But that did not work. I did not find anything relevant in the documentation either.