I want to know Best Practices for Using Param with HoloViz – I want Suggestions

Hey everyone,

I have been diving into HoloViz’s Param library & I am impressed with how it simplifies parameterized code when building interactive apps. I feel such as I am just scratching the surface & want advice from experienced users here.

Are there any common pitfalls to avoid?
How does Param handle large datasets or frequent updates?
Have you created your own? If so, any tips?
What is the best way to link Param with Panel for smooth UI updates?

While exploring these topics, I also came across some use cases where java training programs integrate with Param-based dashboards. Has anyone tried something similar?

I want to hear about real-world examples or even some dos and do not from your experience. Alos I have see this How does param.Action/Callable handle passing self to function? Unexpected behavior in conjunction with Panel If there are Any insights, code snippets or resources please share it would be helpful.

Thank you… :blush:

For me, these were the best pages:
https://panel.holoviz.org/how_to/best_practices/dev_experience.html
https://panel.holoviz.org/how_to/best_practices/user_experience.html

And the best example for my application was:

What is the best way to link Param with Panel for smooth UI updates?
I’ve taken the habit of creating child classes of pn.viewable.Viewer like this:

class RandomClass(pn.viewable.Viewer):
    # Parameters for the UI

    # Content Control
    param1 = param.ListSelector(default=[], objects=[], label='Filter for specific runs',
                                   doc="edited out")

    param2 = param.ListSelector(default=[], objects=[], label='Filter for specific runs',
                                        doc="edited out")

    param3 = param.ListSelector(default=[], objects=[''],
                                          label='',
                                          doc="")

    def __init__(self, plot_width = 850, **params):
        super().__init__(**params)

        self._min_width = plot_width
        self._min_height = 350
        ....

I then use DynamicMaps or @param.depends depending on the use case to bind params to plots or functions

dynamic_curve = hv.DynamicMap(
                    pn.bind(
                        self._your_fcn_that_returns_the_thing_to_display,
                       self.param.param1, 
                       self.param.param2,
                       self.param.param3))
    @param.depends('param1', 'param2', watch=True)
    def update_offset(self):
        self.delta_offset = self.convert_offset(self.param1, -self.param2)
        self.offset = int(self.delta_offset+self.tool_offset)

It depends on what you’re trying to do, but if it’s data display, getting a good grasp on dynamic maps, layouts, overlay and bind is essential. For me, that’s what was hardest to grasp, but once you do, it becomes easier.

1 Like