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
Hello, Any Idea How To Log Tables With Hyperlinks? When Logging Dataframes Using

Hello,

Any idea how to log tables with hyperlinks?

When logging dataframes using report_table I get tables in the plots section. I would like the cell contents to be clickable hyperlinks.
I tried settting the dataframe values to HTML formatted strings such as "<a href= [None](https://my_url.com) >display text</a>". This almost works - the texts that appear in the plots look like clickable hyperlinks but when I click them nothing happens (it doesn't lead anywhere):
image
image

  
  
Posted 10 months ago
Votes Newest

Answers 4


Hi @<1523701070390366208:profile|CostlyOstrich36>
I did something like this:

data = {"index": ["<a href=
>12345</a>"], y:[1],...}
df = pd.DataFrame(data)
clearml_logger.report_table(title, series, iteration, df)
  
  
Posted 10 months ago

Hi @<1774245260931633152:profile|GloriousGoldfish63> , checking it

  
  
Posted 10 months ago

Hi @<1774245260931633152:profile|GloriousGoldfish63> , how did you try implementing it code wise? Do you have a snippet? I recall looking into this at some point and I found a few interesting threads on this in the plotly community, for example - None

  
  
Posted 10 months ago

Hi @<1523701070390366208:profile|CostlyOstrich36> how do I utilize the ‘presentation’:‘markdown’ solution you mentioned in conjunction with logger.report_table? Is it possible?

  
  
Posted 9 months ago
963 Views
4 Answers
10 months ago
9 months ago
Tags