Replies: 2 comments 3 replies
-
|
Related issue: currently, user can't customize displays that are persisted in the For instance, user can't customize the display = report.metrics.precision_recall()
display.plot()
project.put([...], display.figure_)Can't we go a bit further of your proposition and add also styling at the function level, accessor level, or even at the report level? |
Beta Was this translation helpful? Give feedback.
-
|
I like the solution |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
While working on #1805, it looks like there a possibility to hand up with several kwargs style. Let's provide an example:
Switch
kindor providingx,y, orhuewill choose different type of visual representation and we need to dispatch which part to tweak. Currently, we have two ways to tweak:or
The
set_stylewas introduced to be able to persist the style across call todisplayat first.Now, I'm wondering if we should not limit the API and allow only to call
set_styleto set the kwargs. The reasoning behind:plotmethod because we reduce the number of parameters to only the element that will define what is shows on the plotIn short the API for the above case would become:
and
Beta Was this translation helpful? Give feedback.
All reactions