Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Reporting Nonetype Scalars.

Reporting NoneType scalars.
Is it possible to report None somehow, to skip the point on a plot? If I just skip it, it will interpolate between the previous and the next point, but I'd like to have a split line segment or something (so draw nothing) so that I know that I had a missing value at that moment? Thanks!

  
  
Posted 2 months ago
Votes Newest

Answers 6


Got it. Is there any way to skip a point at some iteration? If I just don't report it at iteration t I'll get interpolation from t-1 to t+1.

  
  
Posted 2 months ago

How would that be reflected on the plot?

  
  
Posted 2 months ago

By default, as 0 values

  
  
Posted 2 months ago

@<1631102016807768064:profile|ZanySealion18> , I think no such capability exists currently. I'd suggest opening a github feature request for this.

  
  
Posted 2 months ago

Got it, thanks!

  
  
Posted 2 months ago

Hi @<1631102016807768064:profile|ZanySealion18> ! Reporting None is not possible, but you could report np.nan instead.

  
  
Posted 2 months ago
166 Views
6 Answers
2 months ago
2 months ago
Tags