Jump to content

Nate

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by Nate

  1. I have a PI tag that is getting written & overwritten multiple times.

    That PI tag is then being displayed within a SEEQ workbook.

    I turned off caching on all signals, but I still see large changes in the pi tag value when I hit the button "clear cache".

    Is there a way to stop this from happening so I don't have to hit "clear cache" to see the most up-to-date pi tag value?

     

    As an example, I currently see a value of 6 being displayed, but when I hit clear cache, the value updates to 7.

  2. 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)

     

  3. I pushed data to a signal using spy.push.

    I tried to overwrite / 'erase' the pushed results by passing a None value for that particular timestamp.

    However, when I push the results, I still see the previous values pushed.

    Now, I can push new values to that particular timestamp and it will be overridden, but None values doesn't appear to work.

    Note, in order to push the None values without erroring out, I had to pass the metadata.

     

    Is there a way to overwrite previously pushed data with 'None' values?

  4. Hello,

    Note: I am using the learn.seeq.com environment of SEEQ Data Lab.

    I see that SEEQ Data Lab uses python version 3.8.8. I have some scripts / packages that work on an earlier version of python.

    Is there a way to install a different version of python on SEEQ Data Lab?

             I tried apt-get python3.7.9, but I don't appear to have permissions to do so.

    Additionally, it would be nice to setup different virtual environments that may use different packages & python versions.

    Is there a way to create a different virtual environment within SEEQ Data Lab?

            I tried creating one with conda, and it gets created. However, SEEQ Data Lab throws an error when attempting to activate it.

    Thank you,
    Nate

×
×
  • Create New...