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
How Would I Go Downloading A Table That I Have Reported Using

How would I go downloading a table that I have reported using logger.report_table ? In the UI downloading it as a JSON downloads it a in a weird format which pandas cannot convert to a dataframe

  
  
Posted 2 years ago
Votes Newest

Answers 7


SuccessfulKoala55 , I get a list of 1 value. This value is a dictionary which has the keys type header and cells . cells is a dictionary in itself which has the keys height values align line font

  
  
Posted 2 years ago

WackyRabbit7 This is a json representation of the entire plot (basically how plotly sees it).
What you are after is:
full_json[0]['cells']['values']Which is a list of lists (row order) in the table

  
  
Posted 2 years ago

WackyRabbit7 what format are you getting, exactly?

  
  
Posted 2 years ago

I jsut think that if I use "report_table" I might as well be able to download it as CSV or something

  
  
Posted 2 years ago

Yeah I got what I needed

  
  
Posted 2 years ago

From the UI

  
  
Posted 2 years ago

programmatically or from the UI?

  
  
Posted 2 years ago