Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Scientific Visualization Book | 9,367 | 16 days ago | 17 | other | Python | |||||
An open access book on scientific visualization using python and matplotlib | ||||||||||
Hedgehog Lab | 2,323 | 3 months ago | 33 | apache-2.0 | TypeScript | |||||
Run, compile and execute JavaScript for Scientific Computing and Data Visualization TOTALLY TOTALLY TOTALLY in your BROWSER! An open source scientific computing environment for JavaScript TOTALLY in your browser, matrix operations with GPU acceleration, TeX support, data visualization and symbolic computation. | ||||||||||
Glumpy | 1,171 | 2 months ago | 92 | bsd-3-clause | Python | |||||
Python+Numpy+OpenGL: fast, scalable and beautiful scientific visualization | ||||||||||
Mayavi | 1,123 | 2 | 12 days ago | 4 | March 15, 2022 | 422 | other | Python | ||
3D visualization of scientific data in Python | ||||||||||
Ggsci | 572 | 6 days ago | 5 | gpl-3.0 | R | |||||
🦄 Scientific journal and sci-fi themed color palettes for ggplot2 | ||||||||||
Python Opengl | 538 | a year ago | 21 | other | HTML | |||||
An open access book on Python, OpenGL and Scientific Visualization, Nicolas P. Rougier, 2018 | ||||||||||
Cellxgene | 457 | 2 | a month ago | 40 | February 28, 2022 | 118 | mit | JavaScript | ||
An interactive explorer for single-cell transcriptomics data | ||||||||||
Geojs | 404 | 33 | 10 | 6 days ago | 109 | October 10, 2022 | 45 | apache-2.0 | JavaScript | |
High-performance visualization and interactive data exploration of scientific and geospatial location aware datasets | ||||||||||
Scico | 348 | 3 | 3 | 8 days ago | 4 | December 08, 2021 | 1 | other | R | |
Palettes for R based on the Scientific Colour-Maps | ||||||||||
Visit | 306 | 2 days ago | 1,765 | bsd-3-clause | C | |||||
VisIt - Visualization and Data Analysis for Mesh-based Scientific Data |
Glumpy is a python library for scientific visualization that is both fast, scalable and beautiful. Glumpy offers a natural interface between numpy and modern OpenGL.
Source repository | glumpy/glumpy |
Issue tracker | https://github.com/glumpy/glumpy/issues |
Website | http://glumpy.github.io |
Gallery | http://glumpy.github.io/gallery.html |
Documentation | http://glumpy.readthedocs.org/en/latest/ |
Chatroom | https://gitter.im/glumpy/chatroom |
Mailing list | https://groups.google.com/forum/#!forum/glumpy-users |
git clone https://github.com/glumpy/glumpy.git cd glumpy python setup.py install cd examples ./app-simple.py
glumpy makes use of a number of great external tools that are directly embedded within the repository. Here is a list:
from glumpy import app window = app.Window(512,512) @window.event def on_draw(dt): window.clear() app.run()