03-29-2025 02:07 PM
Two questions:
1) The in range and coerce module, the wire that runs from the In-range? Output, does that delete data not in range?
2) I don't understand the use of imaginary values when constructing the plot.
Mike
03-29-2025 02:46 PM
@MikeBowen wrote:
Two questions:
1) The in range and coerce module, the wire that runs from the In-range? Output, does that delete data not in range?
2) I don't understand the use of imaginary values when constructing the plot.
Mike
03-29-2025 05:16 PM
You lost me on the tunnel.
Mike
03-29-2025 07:14 PM
Here's the light at the end of the tunnel... 😄
The autoindexing output tunnel skips elements where the boolean is false.
(right-click...conditional)
03-30-2025 07:31 AM
The final for loop, does that code modify the curve? The picture I got was very sinusoidal.
03-30-2025 08:25 AM - edited 03-30-2025 08:31 AM
Recommendations:
- Format your data file to be consistent.
- Same number of columns in every row
- Have a dedicated column for each sensor
- Sort data by date.?
- In your code, if you want to process and view the data chronologically, you should sort each sensor/channel by the date/time
- In your display, you can just show points:
Edit: Sorry, I was staring at a cached version of the thread when I started responding, so I missed that Altenbach and OP have been active.
03-30-2025 10:07 AM
@MikeBowen wrote:
The final for loop, does that code modify the curve? The picture I got was very sinusoidal.
No, it does not modify any data, it just unbundles the data as sorted by time.
I don't see anything "sinusoidal". Are you talking about the slow or fast oscillations?
03-30-2025 10:39 AM
I took a look at the first rev code which plotted against time index, and it was sinusoidal in nature in that it was up and down. This data has the same repetition, so it's my bad.
The other plots are intermittent in nature, which makes it hard to see that data. I probably need to blow the data up and look at it slowly. Any recomendations on how to look at the notes? When I pull out the data I will add the notes and make that available, but it could involve a hundred or so points to look at.
Mike
03-30-2025 11:02 AM
If the fast oscillations are noise, you could filter the data.
@MikeBowen wrote:
Any recomendations on how to look at the notes? When I pull out the data I will add the notes and make that available, but it could involve a hundred or so points to look at.
I would just add the note (I assume there is only one note for each time point and time points don't contain duplicates) as a string to the cluster. Each cluster will have a time, an array of values from the various sensors, and a string for notes.
03-30-2025 11:29 AM - edited 03-30-2025 05:54 PM
@altenbach wrote:
Each cluster will have a time, an array of values from the various sensors, and a string for notes.
Here's how that could look like....