NetworkX VS SciPy

Compare NetworkX vs SciPy and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
NetworkX SciPy
61 50
14,178 12,431
1.4% 1.7%
9.6 9.9
about 15 hours ago 4 days ago
Python Python
GNU General Public License v3.0 or later BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

NetworkX

Posts with mentions or reviews of NetworkX. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-04.
  • Routes to LANL from 186 sites on the Internet
    1 project | news.ycombinator.com | 4 Mar 2024
    Built from this data... https://github.com/networkx/networkx/blob/main/examples/grap...
  • The Hunt for the Missing Data Type
    10 projects | news.ycombinator.com | 4 Mar 2024
    I think one of the elements that author is missing here is that graphs are sparse matrices, and thus can be expressed with Linear Algebra. They mention adjacency matrices, but not sparse adjacency matrices, or incidence matrices (which can express muti and hypergraphs).

    Linear Algebra is how almost all academic graph theory is expressed, and large chunks of machine learning and AI research are expressed in this language as well. There was recent thread here about PageRank and how it's really an eigenvector problem over a matrix, and the reality is, all graphs are matrices, they're typically sparse ones.

    One question you might ask is, why would I do this? Why not just write my graph algorithms as a function that traverses nodes and edges? And one of the big answers is, parallelism. How are you going to do it? Fork a thread at each edge? Use a thread pool? What if you want to do it on CUDA too? Now you have many problems. How do you know how to efficiently schedule work? By treating graph traversal as a matrix multiplication, you just say Ax = b, and let the library figure it out on the specific hardware you want to target.

    Here for example is a recent question on the NetworkX repo for how to find the boundary of a triangular mesh, it's one single line of GraphBLAS if you consider the graph as a matrix:

    https://github.com/networkx/networkx/discussions/7326

    This brings a very powerful language to the table, Linear Algebra. A language spoken by every scientist, engineer, mathematician and researcher on the planet. By treating graphs like matrices graph algorithms become expressible as mathematical formulas. For example, neural networks are graphs of adjacent layers, and the operation used to traverse from layer to layer is matrix multiplication. This generalizes to all matrices.

    There is a lot of very new and powerful research and development going on around sparse graphs with linear algebra in the GraphBLAS API standard, and it's best reference implementation, SuiteSparse:GraphBLAS:

    https://github.com/DrTimothyAldenDavis/GraphBLAS

    SuiteSparse provides a highly optimized, parallel and CPU/GPU supported sparse Matrix Multiplication. This is relevant because traversing graph edges IS matrix multiplication when you realize that graphs are matrices.

    Recently NetworkX has grown the ability to have different "graph engine" backends, and one of the first to be developed uses the python-graphblas library that binds to SuiteSparse. I'm not a directly contributor to that particular work but as I understand it there has been great results.

  • Build the dependency graph of your BigQuery pipelines at no cost: a Python implementation
    2 projects | dev.to | 11 Jan 2024
    In the project we used Python lib networkx and a DiGraph object (Direct Graph). To detect a table reference in a Query, we use sqlglot, a SQL parser (among other things) that works well with Bigquery.
  • NetworkX – Network Analysis in Python
    1 project | /r/patient_hackernews | 9 Dec 2023
    1 project | /r/hackernews | 9 Dec 2023
    1 project | /r/hypeurls | 8 Dec 2023
    8 projects | news.ycombinator.com | 8 Dec 2023
  • Custom libraries and utility tools for challenges
    1 project | /r/adventofcode | 5 Dec 2023
    If you program in Python, can use NetworkX for that. But it's probably a good idea to implement the basic algorithms yourself at least one time.
  • Google open-sources their graph mining library
    7 projects | news.ycombinator.com | 3 Oct 2023
    For those wanting to play with graphs and ML I was browsing the arangodb docs recently and I saw that it includes integrations to various graph libraries and machine learning frameworks [1]. I also saw a few jupyter notebooks dealing with machine learning from graphs [2].

    Integrations include:

    * NetworkX -- https://networkx.org/

    * DeepGraphLibrary -- https://www.dgl.ai/

    * cuGraph (Rapids.ai Graph) -- https://docs.rapids.ai/api/cugraph/stable/

    * PyG (PyTorch Geometric) -- https://pytorch-geometric.readthedocs.io/en/latest/

    --

    1: https://docs.arangodb.com/3.11/data-science/adapters/

    2: https://github.com/arangodb/interactive_tutorials#machine-le...

  • org-roam-pygraph: Build a graph of your org-roam collection for use in Python
    2 projects | /r/orgmode | 7 May 2023
    org-roam-ui is a great interactive visualization tool, but its main use is visualization. The hope of this library is that it could be part of a larger graph analysis pipeline. The demo provides an example graph visualization, but what you choose to do with the resulting graph certainly isn't limited to that. See for example networkx.

SciPy

Posts with mentions or reviews of SciPy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-04.
  • What Is a Schur Decomposition?
    2 projects | news.ycombinator.com | 4 Mar 2024
    I guess it is a rite of passage to rewrite it. I'm doing it for SciPy too together with Propack in [1]. Somebody already mentioned your repo. Thank you for your efforts.

    [1]: https://github.com/scipy/scipy/issues/18566

  • Fortran codes are causing problems
    2 projects | /r/rstats | 13 Sep 2023
    Fortran codes have caused many problems for the Python package Scipy, and some of them are now being rewritten in C: e.g., https://github.com/scipy/scipy/pull/19121. Not only does R have many Fortran codes, there are also many R packages using Fortran codes: https://github.com/r-devel/r-svn, https://github.com/cran?q=&type=&language=fortran&sort=. Modern Fortran is a fine language but most legacy Fortran codes use the F77 style. When I update the R package quantreg, which uses many Fortran codes, I get a lot of warning messages. Not sure how the Fortran codes in the R ecosystem will be dealt with in the future, but they recently caused an issue in R due to the lack of compiler support for Fortran: https://blog.r-project.org/2023/08/23/will-r-work-on-64-bit-arm-windows/index.html. Some renowned packages like glmnet already have their Fortran codes rewritten in C/C++: https://cran.r-project.org/web/packages/glmnet/news/news.html
  • [D] Which BLAS library to choose for apple silicon?
    2 projects | /r/MachineLearning | 24 May 2023
    There are several lessons here: a) vanilla conda-forge numpy and scipy versions come with openblas, and it works pretty well, b) do not use netlib unless your matrices are small and you need to do a lot of SVDs, or idek why c) Apple's veclib/accelerate is super fast, but it is also numerically unstable. So much so that the scipy's devs dropped any support of it back in 2018. Like dang. That said, they are apparently are bring it back in, since the 13.3 release of macOS Ventura saw some major improvements in accelerate performance.
  • SciPy: Interested in adopting PRIMA, but little appetite for more Fortran code
    8 projects | news.ycombinator.com | 18 May 2023
    First, if you read through that scipy issue (https://github.com/scipy/scipy/issues/18118 ) the author was willing and able to relicense PRIMA under a 3-clause BSD license which is perfectly acceptable for scipy.

    For the numerical recipes reference, there is a mention that scipy uses a slightly improved version of Powell's algorithm that is originally due to Forman Acton and presumably published in his popular book on numerical analysis, and that also happens to be described & included in numerical recipes. That is, unless the code scipy uses is copied from numerical recipes, which I presume it isn't, NR having the same algorithm doesn't mean that every other independent implementation of that algorithm falls under NR copyright.

  • numerically evaluating wavelets?
    1 project | /r/math | 3 May 2023
  • Fortran in SciPy: Get rid of linalg.interpolative Fortran code
    1 project | news.ycombinator.com | 27 Apr 2023
  • Optimization Without Using Derivatives
    2 projects | news.ycombinator.com | 21 Apr 2023
    Reading the discussions under a previous thread titled "More Descent, Less Gradient"( https://news.ycombinator.com/item?id=23004026 ), I guess people might be interested in PRIMA ( www.libprima.net ), which provides the reference implementation for Powell's renowned gradient/derivative-free (zeroth-order) optimization methods, namely COBYLA, UOBYQA, NEWUOA, BOBYQA, and LINCOA.

    PRIMA solves general nonlinear optimizaton problems without using derivatives. It implements Powell's solvers in modern Fortran, compling with the Fortran 2008 standard. The implementation is faithful, in the sense of being mathmatically equivalent to Powell's Fortran 77 implementation, but with a better numerical performance. In contrast to the 7939 lines of Fortran 77 code with 244 GOTOs, the new implementation is structured and modularized.

    There is a discussion to include the PRIMA solvers into SciPy ( https://github.com/scipy/scipy/issues/18118 ), replacing the buggy and unmaintained Fortran 77 version of COBYLA, and making the other four solvers available to all SciPy users.

  • What can I contribute to SciPy (or other) with my pure math skill? I’m pen and paper mathematician
    5 projects | /r/Python | 17 Apr 2023
  • Emerging Technologies: Rust in HPC
    3 projects | /r/rust | 24 Mar 2023
    if that makes your eyes bleed, what do you think about this? https://github.com/scipy/scipy/blob/main/scipy/special/specfun/specfun.f (heh)
  • Python
    3 projects | /r/ProgrammerHumor | 29 Dec 2022

What are some alternatives?

When comparing NetworkX and SciPy you can also consider the following projects:

Numba - NumPy aware dynamic Python compiler using LLVM

SymPy - A computer algebra system written in pure Python

Dask - Parallel computing with task scheduling

statsmodels - Statsmodels: statistical modeling and econometrics in Python

julia - The Julia Programming Language

NumPy - The fundamental package for scientific computing with Python.

RDKit - The official sources for the RDKit library

Pandas - Flexible and powerful data analysis / manipulation library for Python, providing labeled data structures similar to R data.frame objects, statistical functions, and much more

snap - Stanford Network Analysis Platform (SNAP) is a general purpose network analysis and graph mining library.

astropy - Astronomy and astrophysics core library

or-tools - Google's Operations Research tools: