I create a pandas dataframe 'df' in a notebook A, I need use the data frame 'df' in a notebook B. I do not know what can i do. How call df in the notebook B to make some computations and create anothers dataframes
I tried this:
from notbookA import df
but does not work. I want manipulate df in the notebook B. i Think the problem is beacause i used notebooks instead python files but i need use notebooks.
I want something like :
`from notbookA import df`
#example
df2 = df.apply(lamnda x: someFunction(x))