IOPub data rate exceeded

Hello,

How can I increase the data rate.

I have tried generate a config file

jupyter notebook --generate-config

Then increased the limit from this

 #  Default: 1000000
c.NotebookApp.iopub_data_rate_limit = 10000000

To the following:

#  Default: 1000000
c.NotebookApp.iopub_data_rate_limit = 100000000000000000000000000

I have also tried the following command:

jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e24

But I still get the following output

IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.

Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)

For some reason although I update the values they do not save or get picked up by my notebook.

Thank you in advance for the help

Dear Jammel,

Unfortunately SWAN does not allow to configure this setting.

The fact that you need to increase this rate limit means you are printing something big in the notebook, as far as I understand. Can you perhaps reduce the size of that output?

I am currently using a reduced dataset but wanted to increase it.

Thank you very much for your response and it answers my question