Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Fix right panel visibility overlap issue#413

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
jim22k merged 1 commit intopython-graphblas:mainfromjim22k:doc_fix2
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes fromall 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
8 changes: 0 additions & 8 deletionsdocs/_static/custom.css
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@

/* Main Page Stylings */

.container-xl {
max-width: 1400px;
}

.intro-card {
background-color: var(--pst-color-background);
margin-bottom: 30px;
Expand DownExpand Up@@ -80,7 +76,3 @@ button span.theme-switch:hover {
.dataframe tbody th, .dataframe tbody td {
padding: 10px;
}

.bd-sidebar-primary, .bd-sidebar-secondary {
position: sticky;
}
23 changes: 23 additions & 0 deletionsdocs/api_reference/collections.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
Collections
-----------

Matrix
~~~~~~

.. autoclass:: graphblas.Matrix
:members:
:special-members: __getitem__, __setitem__, __delitem__, __contains__, __iter__

Vector
~~~~~~

.. autoclass:: graphblas.Vector
:members:
:special-members: __getitem__, __setitem__, __delitem__, __contains__, __iter__

Scalar
~~~~~~

.. autoclass:: graphblas.Scalar
:members:
:special-members: __eq__, __bool__
7 changes: 7 additions & 0 deletionsdocs/api_reference/exceptions.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
Exceptions
----------

.. automodule:: graphblas.exceptions
:members: InvalidObject, InvalidIndex, DomainMismatch, DimensionMismatch,
OutputNotEmpty, OutOfMemory, IndexOutOfBound, Panic, EmptyObject,
NotImplementedException, UdfParseError
133 changes: 6 additions & 127 deletionsdocs/api_reference/index.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -4,131 +4,10 @@
API Reference
=============

Collections
-----------
.. toctree::
:maxdepth: 2

Matrix
~~~~~~

.. autoclass:: graphblas.Matrix
:members:
:special-members: __getitem__, __setitem__, __delitem__, __contains__, __iter__

Vector
~~~~~~

.. autoclass:: graphblas.Vector
:members:
:special-members: __getitem__, __setitem__, __delitem__, __contains__, __iter__

Scalar
~~~~~~

.. autoclass:: graphblas.Scalar
:members:
:special-members: __eq__, __bool__

Operators
---------

UnaryOp
~~~~~~~

.. autoclass:: graphblas.core.operator.UnaryOp()
:members:

BinaryOp
~~~~~~~~

.. autoclass:: graphblas.core.operator.BinaryOp()
:members:

Monoid
~~~~~~

.. autoclass:: graphblas.core.operator.Monoid()
:members:

Semiring
~~~~~~~~

.. autoclass:: graphblas.core.operator.Semiring()
:members:

IndexUnaryOp
~~~~~~~~~~~~

.. autoclass:: graphblas.core.operator.IndexUnaryOp()
:members:

SelectOp
~~~~~~~~

.. autoclass:: graphblas.core.operator.SelectOp()
:members:


Input/Output
------------

NetworkX
~~~~~~~~

These methods require `networkx <https://networkx.org/>`_ to be installed.

.. autofunction:: graphblas.io.from_networkx

.. autofunction:: graphblas.io.to_networkx

Numpy
~~~~~

These methods require `scipy <https://scipy.org/>`_ to be installed, as some
of the scipy.sparse machinery is used during the conversion process.

.. autofunction:: graphblas.io.from_numpy

.. autofunction:: graphblas.io.to_numpy

Scipy Sparse
~~~~~~~~~~~~

These methods require `scipy <https://scipy.org/>`_ to be installed.

.. autofunction:: graphblas.io.from_scipy_sparse

.. autofunction:: graphblas.io.to_scipy_sparse

PyData Sparse
~~~~~~~~~~~~~

These methods require `sparse <https://sparse.pydata.org/>`_ to be installed.

.. autofunction:: graphblas.io.from_pydata_sparse

.. autofunction:: graphblas.io.to_pydata_sparse

Matrix Market
~~~~~~~~~~~~~

Matrix Market is a `plain-text format <https://math.nist.gov/MatrixMarket/formats.html>`_ for storing graphs.

These methods require `scipy <https://scipy.org/>`_ to be installed.

.. autofunction:: graphblas.io.mmread

.. autofunction:: graphblas.io.mmwrite

Visualization
~~~~~~~~~~~~~

.. autofunction:: graphblas.io.draw


Exceptions
----------

.. automodule:: graphblas.exceptions
:members: InvalidObject, InvalidIndex, DomainMismatch, DimensionMismatch,
OutputNotEmpty, OutOfMemory, IndexOutOfBound, Panic, EmptyObject,
NotImplementedException, UdfParseError
collections
operators
io
exceptions
55 changes: 55 additions & 0 deletionsdocs/api_reference/io.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
Input/Output
------------

NetworkX
~~~~~~~~

These methods require `networkx <https://networkx.org/>`_ to be installed.

.. autofunction:: graphblas.io.from_networkx

.. autofunction:: graphblas.io.to_networkx

Numpy
~~~~~

These methods require `scipy <https://scipy.org/>`_ to be installed, as some
of the scipy.sparse machinery is used during the conversion process.

.. autofunction:: graphblas.io.from_numpy

.. autofunction:: graphblas.io.to_numpy

Scipy Sparse
~~~~~~~~~~~~

These methods require `scipy <https://scipy.org/>`_ to be installed.

.. autofunction:: graphblas.io.from_scipy_sparse

.. autofunction:: graphblas.io.to_scipy_sparse

PyData Sparse
~~~~~~~~~~~~~

These methods require `sparse <https://sparse.pydata.org/>`_ to be installed.

.. autofunction:: graphblas.io.from_pydata_sparse

.. autofunction:: graphblas.io.to_pydata_sparse

Matrix Market
~~~~~~~~~~~~~

Matrix Market is a `plain-text format <https://math.nist.gov/MatrixMarket/formats.html>`_ for storing graphs.

These methods require `scipy <https://scipy.org/>`_ to be installed.

.. autofunction:: graphblas.io.mmread

.. autofunction:: graphblas.io.mmwrite

Visualization
~~~~~~~~~~~~~

.. autofunction:: graphblas.io.draw
38 changes: 38 additions & 0 deletionsdocs/api_reference/operators.rst
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
Operators
---------

UnaryOp
~~~~~~~

.. autoclass:: graphblas.core.operator.UnaryOp()
:members:

BinaryOp
~~~~~~~~

.. autoclass:: graphblas.core.operator.BinaryOp()
:members:

Monoid
~~~~~~

.. autoclass:: graphblas.core.operator.Monoid()
:members:

Semiring
~~~~~~~~

.. autoclass:: graphblas.core.operator.Semiring()
:members:

IndexUnaryOp
~~~~~~~~~~~~

.. autoclass:: graphblas.core.operator.IndexUnaryOp()
:members:

SelectOp
~~~~~~~~

.. autoclass:: graphblas.core.operator.SelectOp()
:members:

[8]ページ先頭

©2009-2025 Movatter.jp