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
Profile picture
DistressedKoala73
Moderator
2 Questions, 4 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

3 × Eureka!
0 Votes
4 Answers
599 Views
0 Votes 4 Answers 599 Views
one year ago
0 Votes
3 Answers
632 Views
0 Votes 3 Answers 632 Views
Hi, I am running my script from PyCharm and create a task inside it using Task.init() My PyCharm is connected to my git repo, and I want to add my git repo i...
one year ago
0 Hi, I Have A Plt Plot That Is Being Automatically Uploaded To A Task And Is Presented In The Plots Section Of The Task As Expected. However, The Plot Itself Isn'T Presented Fully, And I Can Only See The Titles And Some Of The Legend, But Not The Lineplot

Hi CostlyOstrich36 , thank you for replying.
I have a download button on the top right, but it downloaded the not-full version of the plot.. Attached is the downloaded png.
The plot is created by sns.FacetGrid() and plt.show() at the end

one year ago
0 Hi, I Have A Plt Plot That Is Being Automatically Uploaded To A Task And Is Presented In The Plots Section Of The Task As Expected. However, The Plot Itself Isn'T Presented Fully, And I Can Only See The Titles And Some Of The Legend, But Not The Lineplot

` def plot_facetgrid(df, col, x_axis, y_axis, hue_by):
plt.figure(figsize=(10,8), dpi=100)
with mpl.rc_context({"lines.linewidth": 2, "axes.titlesize": 16, "axes.labelsize": 16,
"xtick.labelsize": 16, "ytick.labelsize": 16, "legend.fontsize": 16}):
n_sample = 8
grid = sns.FacetGrid(
df,
margin_titles=True,
col=col,
row=hue_by,
sharex='all',
sharey='row',
# c...

one year ago