I create data table in my notebook by importing a excel spreadsheet using:
s0 = Import["G:\\Meu Drive\\Planilhas\\resultados_analises.\xlsx",{"Data", 3, Range[5, 54], Range[1, 11]}]
Then I create others tables subselecting s0 and make a bunch of analysis, plots etc.
I used
PersistentValue["s0"] = s0
and then delete (or comment) the Import command and the PersistentValue above. Then I saved the notebook, open it again and type:
s0 = PersistentValue["s0"]
Then save the notebook again such that every time I load the notebook I work with the same s0 that was imported before instead of Importing again.
My question is: The values associated with s0 is persisted in the notebook forever? Can I move the notebook to another computer, por example?
Or there is a better way to persist my data in the notebook such that I can delete (or comment) the import command?
Thank in advance