I have a Jupyter laptop. In cell 1, I defined a lot of functions that need to be run before other things. Then in the following cells, I begin to cite the result. However, when I convert to HTML, this layout is ugly. Readers must scroll for a long time to see the result, and they may not care about the functions at all. But I have to put the code in this order, because I need these functions.
So my question is: is there a way to control the order in which the cells run after I click the Run All button? or is there a way I could do something like the following. I put all my function definitions in cell 20, then in cell 1, I could say that the Jupyter is something like "run cell 20".
Just wondering if this is doable. Thank.
source
share