03-28-2025 08:45 PM
I am having problems reading a CSV file and getting the XY graph to display properly. I am reading blood glucose values in a CSV format. The best way to describe the outcome is that it looks like a scribble. If the X axis is simply an index number, it gives me nice results, but when I try to make the X-axis show time/date stamp, it looks like a scribble. I have tried both the XY graph and a waveform graph. I have attached the code and a screen capture of what the graph looks like.
03-29-2025 08:30 AM
Can you do a "save for previous" (2020 or below) and attach again. Make sure to include your data and how you read the file.
03-29-2025 11:46 AM
I have attached the code in rev 20, there is one sub vi that I could do away with. I have also attached a sample file.
The code throws away the top 2 rows because they contain header information. Then after filtering for data that is between the start and end dates I throw out unused columns (empty data) and move one column to the end, as that contains information like meals, medication, etc. After that the data is converted to a decimal value (glucose values) and the time/date stamp is converted to a double. After that it is bundled for display.
I also tried the xy graph but that gave a similar unuseable result.
03-29-2025 12:34 PM
You attached LabVIEW 2025 version, not the down converted code for the "Read_....vi". (only the conversion VI is OK).
03-29-2025 12:39 PM
Third time's a charm? I updated to Rev 10, and eliminated the sub vi
03-29-2025 12:42 PM
03-29-2025 12:43 PM
Let's try it again
03-29-2025 01:17 PM
Your time values are not sorted, and I I just graph all timestamps, here's what I get.
A lot of your code is pure Rube Goldberg, for example to append a row to a 2D array, Built array is the correct way (not measuring the array followed by insert)
Can you explain which columns you want to graph? (Your code is way too convoluted!). You should also ensure to replace all missing data with NaN instead of zeroes.
03-29-2025 01:37 PM
Thanks for the input. As you mentioned it I do recall that when I was looking at the data in Excel I did have to sort it first. Looks like I need to sort the data before graphing it. The columns I want to graph are the time, the History glucose, the Scan glucose, and the strip glucose. I also keep the comments for referral back to later. I based the work off of two examples, one that uses an x-y graph and the other that uses a waveform graph.
I'l take a look at rewriting my code and see what I get.
Mike
03-29-2025 01:42 PM - edited 03-29-2025 01:46 PM
Here's something to get you started. I am sure you need to tweak a few things... (e.g. I only graph two columns and don't retain the comments)