Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set NotebookApp.iopub_data_rate_limit and others NotebookApp settings in JupyterHub?

Tags:

I want to start my notebooks with jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000 arguments. Where one could set it in JupyterHub?

like image 411
DuckQueen Avatar asked Apr 19 '17 08:04

DuckQueen


People also ask

What is NotebookApp Iopub_data_rate_limit?

NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec) NotebookApp.rate_limit_window=3.0 (secs) This usually occurs when you want to visualize enormous amounts of data using python visualization libraries like Plotly, matplotlib, seaborn and so on.

How do I increase data limit in Jupyter notebook?

To change this limit, set the config variable `--NotebookApp. iopub_data_rate_limit`. The default data rate limit is 1000000, which you can find in your Jupyter notebook's config file.


1 Answers

Open the command line and enter

jupyter notebook --NotebookApp.iopub_data_rate_limit=1e10

This should start jupyter with the increased data rate.

like image 118
Workhorse Avatar answered Sep 29 '22 19:09

Workhorse