Jump to content

Can I incorporate python widgets in Data Lab?


Sanman Mehta

Recommended Posts

Yes! You can deploy ipywidgets from jupyter notebooks in data lab.  Widgets can be great for wrapping code in UI for No-code experience from workbench using Seeq Add-on tools for implementing Machine Learning models.

Here is one example for datepicker.

 

import ipywidgets as widgets #import the library


widgets.DatePicker(
            description='Start:',
            style={'description_width': '150px'},
            layout={'width': '300px'}) 

You can read more about various widgets here:  https://ipywidgets.readthedocs.io/en/latest/examples/Widget List.html

  • Thanks 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...