I'm working on an interactive graph. One of the options is to select the number of rooms for a house. Right now, if you input any number above 5 in the n_rooms
argument, the graph will always show data for houses that have 5 or more rooms. So I constructed this
n_rooms = widgets.IntSlider(
min=1,
max=5,
description='number of rooms:',
layout=Layout(width='30%'),
style=style,
disabled=False)
The thing is, this will show a slider that goes from 1 to 5. The only thing I want to change is that instead of showing '5', it shows '5 or more'. Is there any way to do this? Thanks