Jump to content

Thorsten Vogt

Super Seeqer
  • Posts

    171
  • Joined

  • Last visited

  • Days Won

    53

Everything posted by Thorsten Vogt

  1. Hello, creating comments in View-Only mode seems not to be possible, the "New Comment" button is missing in the Comments area.
  2. Hello, this topic came up during a customer training. The presentation of the individual assets in the Treemap view looks strange at first glance. In the screenshot, the assets "Area J" and "Area K" are displayed as long rectangles, although all assets have the same number of sub-elements: When the size of the display pane is changed it looks better: According to your KB entry the size of the rectangles is determined by its number of assets and may be changed by the API. Is there an example for this? Regards, Thorsten
  3. Hi Ruben, yes, you can export the data to Excel from your workbench analysis: Include Summary Data adds a worksheet to the Excel file containing statistics of your signals and capsules, Include Signal Samples adds a worksheet with the samples for each signal in the display range. More information can be found here: https://seeq12.atlassian.net/wiki/spaces/KB/pages/494436371/Export+Data+to+Excel+File Regards, Thorsten
  4. Hello, if the tags are not present in an asset structure (e.g. AF framework), I would try to use the Tree File Connector to create my own asset structure in Seeq. This makes it easy to switch between the individual elements without having to create a new analysis or duplicate existing ones. https://seeq12.atlassian.net/wiki/spaces/KB/pages/350978134/Building+Asset+Trees+using+Tree+File+Connector
  5. Hi, I have a strange issue when aggregating data in a histogram. I am counting the number of samples for a signal and aggregate by first using "Year" and the using "Day of the Week" as the aggregation type: This gives me the following histogram with a count of 246 samples for monday in 2012: But these data should belong to sunday. I set up another histogram using the following condition as the second aggregation type: The result now looks like this (which is correct): This is for the other days as well. Is there any way to get around this issue? Installed Seeq version is R21.0.40.01-v201812312325 Regards, Thorsten
  6. Hi Lindsey, I tried solving this by using the externalCalculation-Function of Seeq. I created a python script and modified the functions initialize and compute as followed: def initialize(self): self.sum = 0 pass def compute(self, key, samples_for_key): self.sum += samples_for_key[0] if self.sum < 0: self.sum = 0 return key, self.sum The script is called by using externalCalculation('CusumP.py:NUMERIC:M6CBe8UAQoSN',$d) However, when I am using this script I get the following error message on execution: Error getting data: Client data source exception: Error processing external calculation request: Script CusumP.py:NUMERIC:M6CBe8UAQoSN is not respecting the requirement to do only calculations that operate on data at a single key. Script needs to be changed. Exception: java.lang.RuntimeException at 'externalCalculation', line=1, column=1. To retry, use the button to the right. Why is this behaviour blocked by Seeq? Thorsten
×
×
  • Create New...