Reply To: When dataset has too many data points for display

#6028
Bill Finzer
Keymaster

I can think of a couple possibilities and I bet others can think of more.

  1. The easiest might be to use the graph’s “brush” menu to reduce the size of the points. That doesn’t change the number of points of course, but it might make the graph easy to read.
  2. Define a new attribute with a formula that returns the measurement value if the caseIndex is a multiple of, say, 25, and returns an empty value otherwise. Let’s say the measurement attribute is altitude. Then the formula for the new attribute would be:

if(caseIndex % 25 = 0, altitude, ”)

Hope that helps,

Bill