Does perspective have a maximum frequency at which the table can be updated? #1061
Description
Support Question
FOR THOSE WONDERING WHAT THE SOLUTION IS, IT WAS BECAUSE OF THE SUM OPTION, ANYTIME THERE IS A DUPLICATE, PERSPECTIVE, IT SUMS THE DATA jajajajajajaj
I noticed that anytime I try to add the last update time or time value as an aggregate(group by), the graph produces strange spike. When I visualize the data without adding any x-axis, the data seems to visualize well but does not move, only the data itself keeps updating the previous data). I made sure that the data I am visualizing was correct.
This is the data when I put as an aggregate the last update, spike appears randomly.
The update is done with the following code. Is there a maximum frequency with which I can update the perspective table?
// Loop and update the `table` oocasionally.
(function postRow() {
if (state == "run") {
table.update(update_motor());
}
requestAnimationFrame(postRow);
})();
This is what i get when I add as aggregate my time value which is basically, t+= 0.0001
ADDING MORE IMFORMATION.
When This thing happens, after reading the data from the output, this is what i say
ADDING MORE INFROMATION
I noticed that this happens when there is a duplicate data in the x axis. As you see in the picture below. Is there a way to prevent perspective from behaving like this when there is a duplicate data?
What is the highest precision available?