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
Hi, What Is The Expect Input Of The

Hi, what is the expect input of the series parameter of the logger.report_line_plot function? I am passing list of two lists (like [[1,2,3], [4,5,6]] ) to plot two lines but I get

    self._touch_title_series(title, series[0].name if series else '')
AttributeError: 'list' object has no attribute 'name'
  
  
Posted 11 months ago
Votes Newest

Answers


I think you can see an example on usage here:
None

  
  
Posted 11 months ago