Skip to content

Added notebook for California road network #426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
sphinx==4.2.0
sphinx-readable-theme==1.3.0
sphinx-readable-theme==1.3.0
myst_nb==0.13.1
5 changes: 4 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,12 @@
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.napoleon'
'sphinx.ext.napoleon',
'myst_nb'
]

jupyter_execute_notebooks = "off"

napoleon_numpy_docstring = True

# Add any paths that contain templates here, relative to this directory.
Expand Down
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ Contents
:maxdepth: 1

tutorials.rst
pydatastructs_sphinx_graphs
contributing.rst
authors.rst
pydatastructs/pydatastructs.rst
243 changes: 243 additions & 0 deletions docs/source/pydatastructs_sphinx_graphs.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/source/tutorials.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tutorials
We provide the following tutorials to show how ``pydatastructs``
APIs can help in solving complicated data structures and algorithms
problems easily. For now the problems are abstract. However, we plan
to add some examples showing usage of ``pydatastructs`` on real world
to add some more examples showing usage of ``pydatastructs`` on real world
data sets such as `Stanford Large Network Dataset Collection <https://snap.stanford.edu/data/>`_
and `Urban Dictionary Words And Definitions <https://www.kaggle.com/therohk/urban-dictionary-words-dataset>`_.
If you are interested in playing around with the above datasets using our API,
Expand Down