Colab and other environments
How to use Evidently in different notebook environments.
To install evidently
, run the following command in the notebook cell:
To build a Dashboard
or a Profile
in Google Colab, Kaggle Notebook or Deepnote, simply repeat the steps described above.
For example, to build the Data Drift dashboard, run:
To display the dashboard in the Google Colab, Kaggle Kernel, Deepnote, run:
The show()
method has the argument mode
which can take the following options:
auto - the default option. Ideally, you will not need to specify the value for
mode
and can use the default. But if it does not work (in case we failed to determine the environment automatically), consider setting the correct value explicitly.nbextention - to show the UI using nbextension. Use this option to display dashboards in Jupyter notebooks (it should work automatically).
inline - to insert the UI directly into the cell. Use this option for Google Colab, Kaggle Kernels, and Deepnote. For Google Colab, this should work automatically. For Kaggle Kernels and Deepnote the option should be specified explicitly:
Last updated