All Projects → biggles-plot → biggles

biggles-plot / biggles

Licence: GPL-2.0 license
simple, elegant python plotting

Programming Languages

c
50402 projects - #5 most used programming language
Makefile
30231 projects
shell
77523 projects
TeX
3793 projects
C++
36643 projects - #6 most used programming language
python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to biggles

charter
DSL and C Library to generate SVG Plot
Stars: ✭ 39 (+105.26%)
Mutual labels:  plotting
EOmaps
A library to create interactive maps of geographical datasets
Stars: ✭ 193 (+915.79%)
Mutual labels:  plotting
PyCORN
A script to extract data from ÄKTA/UNICORN result-files (.res)
Stars: ✭ 30 (+57.89%)
Mutual labels:  plotting
2021-bordeaux-dataviz
Scientific Visualization Crash Course (Python & Matplotlib)
Stars: ✭ 20 (+5.26%)
Mutual labels:  plotting
go-plotly
The goal of the go-plotly package is to provide a pleasant Go interface for creating figure specifications which are displayed by the plotly.js JavaScript graphing library.
Stars: ✭ 59 (+210.53%)
Mutual labels:  plotting
tmap
A very fast visualization library for large, high-dimensional data sets.
Stars: ✭ 146 (+668.42%)
Mutual labels:  plotting
tablexplore
Table analysis and plotting application written in PySide2/PyQt5
Stars: ✭ 89 (+368.42%)
Mutual labels:  plotting
machinaris
An easy-to-use WebUI for crypto plotting and farming. Offers Plotman, MadMax, Chiadog, Bladebit, Farmr, and Forktools in a Docker container. Supports Chia, MMX, Chives, Flax, HDDCoin, and BPX among others.
Stars: ✭ 324 (+1605.26%)
Mutual labels:  plotting
Macro-with-Python
Macro with Python
Stars: ✭ 45 (+136.84%)
Mutual labels:  plotting
Introduction-to-Python-Numerical-Analysis-for-Engineers-and-Scientist
Introduction to Python: Numerical Analysis for Engineers and Scientist. In 2017, Python became the world's most popular programming language. This course covers the basic syntax, linear algebra, plotting, and more to prepare students for solving numerical problems with Python.
Stars: ✭ 110 (+478.95%)
Mutual labels:  plotting
Displaz.jl
Julia bindings for the displaz lidar viewer
Stars: ✭ 16 (-15.79%)
Mutual labels:  plotting
Luminescence
Development of the R package 'Luminescence'
Stars: ✭ 13 (-31.58%)
Mutual labels:  plotting
pyMeteo
Meteorological routines
Stars: ✭ 59 (+210.53%)
Mutual labels:  plotting
cpplot
Interactive graphs and charts for C++, viewable in-browser
Stars: ✭ 73 (+284.21%)
Mutual labels:  plotting
plotex
Elixir plotting utilities library
Stars: ✭ 74 (+289.47%)
Mutual labels:  plotting
Interactive Data Editor
A Software to interactively edit data in a graphical manner
Stars: ✭ 35 (+84.21%)
Mutual labels:  plotting
numereval
A small library to locally calculate the scores on numer.ai tournament's diagnostics dashboard.
Stars: ✭ 31 (+63.16%)
Mutual labels:  plotting
labplot
LabPlot is a FREE, open source and cross-platform Data Visualization and Analysis software accessible to everyone.
Stars: ✭ 107 (+463.16%)
Mutual labels:  plotting
texfig
Utility to generate PGF vector files from Python's Matplotlib plots to use in LaTeX documents.
Stars: ✭ 58 (+205.26%)
Mutual labels:  plotting
Chia-Plot-Status
GUI Tool for beginners and experts to Monitor and Analyse Chia Plotting log files, show health and progress of running plots and estimated time to completion. No setup, configuration or installation of python or whatever required. Just install and enjoy.
Stars: ✭ 187 (+884.21%)
Mutual labels:  plotting

Biggles : Scientific Plotting with/in/for Python

https://travis-ci.org/biggles-plot/biggles.svg?branch=master

Biggles is a Python module for creating publication-quality 2D scientific plots. It supports multiple output formats (postscript, x11, png, svg, gif), understands simple TeX, and sports a high-level, elegant interface. It's intended for technical users with sophisticated plotting needs.

Simple Example

Here's a simple biggles script:

>>> import biggles
>>> x = [1, 2, 3, 4, 5]
>>> y = [5, 4, 3, 2, 1]
>>> p = biggles.FramedPlot()
>>> p.add(biggles.Curve(x, y))
>>> p.show()

This produces an X window with a framed plot of the curve y(x). You can find more in the examples directory included with the source distribution. Also, see the gallery on the web.

See the full documentation for more details.

Installation

Biggles requires numpy libpng, X11 libraries and ghostscript

Homebrew:

$ wget https://dl.bintray.com/xquartz/downloads/XQuartz-2.7.11.dmg
$ sudo hdiutil attach XQuartz-2.7.11.dmg
$ sudo installer -package /Volumes/XQuartz-2.7.11/XQuartz.pkg -target /
$ brew install ghostscript
$ pip install biggles

Debian/Ubuntu:

$ sudo apt install build-essential libx11-dev libxft-dev libxt-dev libxaw7-dev libpng-dev ghostscript
$ pip install biggles
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].