Nate Posted June 28 Share Posted June 28 If I have a signal "A" and I push the data to two different notebooks, are these two separate signals that are only available within that workbook? It seems when I do this, that the signal "A" is shared across notebooks, but I thought it should be only local to the workbook pushed to. The code below, I can see the 4,5,6 in both workbooks. Is that right? Note, I didn't put the datetime index within the df, but it would be there. data = {"A":[1,2,3]} df = pd.DataFrame(data) spy.push(data=df_pred, workbook='Workbook1', worksheet=None) data = {"A":[4,5,6]} df = pd.DataFrame(data) spy.push(data=df, workbook='Workbook2', worksheet=None) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now