Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes changes to multiple Jupyter notebooks in the
docs/source/examples
directory. The main goal of these changes is to improve the structure and readability of the notebooks by separating the installation of dependencies into their own code cells.Improvements to notebook structure:
docs/source/examples/analysing-GITT-data.ipynb
: Moved the%pip install matplotlib
command to its own code cell.docs/source/examples/comparing-pyprobe-performance.ipynb
: Moved the%pip install matplotlib
and%pip install pandas
commands to their own code cells.docs/source/examples/differentiating-voltage-data.ipynb
: Moved the%pip install matplotlib
command to its own code cell.docs/source/examples/filtering-data.ipynb
: Moved the%pip install matplotlib
command to its own code cell.docs/source/examples/getting-started.ipynb
: Moved the%pip install matplotlib
command to its own code cell.docs/source/examples/ocv-fitting.ipynb
: Moved the%pip install matplotlib
command to its own code cell.docs/source/examples/plotting.ipynb
: Moved the%pip install matplotlib
command to its own code cell.docs/source/examples/sharing-data.ipynb
: Added a new code cell for the%pip install matplotlib
command.docs/source/examples/working-with-pybamm-models.ipynb
: Moved the%pip install ipywidgets
command to its own code cell.Additionally, there was a minor change to the file name used in the
measure_pyprobe
function call in thecomparing-pyprobe-performance.ipynb
notebook:docs/source/examples/comparing-pyprobe-performance.ipynb
: Changed the file name in themeasure_pyprobe
function call fromsample_data_neware.parquet
tosample_data_neware_test.parquet
.