All Projects → juliendelplanque → MatplotLibBridge

juliendelplanque / MatplotLibBridge

Licence: MIT license
A bridge to provide the ability to Pharo user to use Python's Matplotlib.

Programming Languages

smalltalk
420 projects
HTML
75241 projects

Projects that are alternatives of or similar to MatplotLibBridge

Python-Course
Python Basics, Machine Learning and Deep Learning
Stars: ✭ 50 (+150%)
Mutual labels:  matplotlib
OpenAPI
A pharo implementation of OpenAPI 3.0.1
Stars: ✭ 20 (+0%)
Mutual labels:  pharo
scipy-crash-course
Material for a 24 hours course on Scientific Python
Stars: ✭ 98 (+390%)
Mutual labels:  matplotlib
pyCircos
python Circos
Stars: ✭ 233 (+1065%)
Mutual labels:  matplotlib
PetitParser
Petit Parser is a framework for building parsers.
Stars: ✭ 39 (+95%)
Mutual labels:  pharo
CNCC-2019
Computational Neuroscience Crash Course (CNCC 2019)
Stars: ✭ 26 (+30%)
Mutual labels:  matplotlib
publib
Produce publication-level quality images on top of Matplotlib
Stars: ✭ 34 (+70%)
Mutual labels:  matplotlib
PyEarthScience
The PyEarthScience repository created by DKRZ (German Climate Computing Center) provides Python scripts and Jupyter notebooks in particular for scientific data processing and visualization used in climate science. It contains scripts for visualization, I/O, and analysis using PyNGL, PyNIO, xarray, cfgrib, xesmf, cartopy, and others.
Stars: ✭ 56 (+180%)
Mutual labels:  matplotlib
pyplot-fortran
For generating plots from Fortran using Python's matplotlib.pyplot 📈
Stars: ✭ 158 (+690%)
Mutual labels:  matplotlib
jupyter boilerplate
Adds a customizable menu item to Jupyter (IPython) notebooks to insert boilerplate snippets of code
Stars: ✭ 69 (+245%)
Mutual labels:  matplotlib
geojsoncontour
Convert matplotlib contour plots to geojson
Stars: ✭ 78 (+290%)
Mutual labels:  matplotlib
tsp-essay
A fun study of some heuristics for the Travelling Salesman Problem.
Stars: ✭ 15 (-25%)
Mutual labels:  matplotlib
SIXX
SIXX is an XML serializer/deserializer written in Smalltalk. The purpose is to store and load Smalltalk objects in a portable, dialect-independent XML format.
Stars: ✭ 14 (-30%)
Mutual labels:  pharo
awesome-matplotlib
A curated list of awesome repos and tutorials to develop great matplotlib graphs and diagrams
Stars: ✭ 154 (+670%)
Mutual labels:  matplotlib
sarviewer
Generate graphs with gnuplot or matplotlib (Python) from sar data
Stars: ✭ 60 (+200%)
Mutual labels:  matplotlib
ml-book
Codice sorgente ed Errata Corrige del mio libro "A tu per tu col Machine Learning"
Stars: ✭ 16 (-20%)
Mutual labels:  matplotlib
gaitutils
Extract and visualize gait data
Stars: ✭ 28 (+40%)
Mutual labels:  matplotlib
2021-bordeaux-dataviz
Scientific Visualization Crash Course (Python & Matplotlib)
Stars: ✭ 20 (+0%)
Mutual labels:  matplotlib
Data-Analytics-Projects
This repository contains the projects related to data collecting, assessing,cleaning,visualizations and analyzing
Stars: ✭ 167 (+735%)
Mutual labels:  matplotlib
matplotnim
A Nim wrapper for matplotlib
Stars: ✭ 22 (+10%)
Mutual labels:  matplotlib

MatplotLibBridge

A bridge to provide the ability to Pharo user to use Python's Matplotlib.

Install

This project has been tested on Linux and Mac OS. If someone manage to use it on Windows, please let me know.

Python side

Obviously, you need to have Python 3 installed on your machine. Furthermore, you need matplotlib package installed as well. The following link explains how to do it install matplotlib.

Pharo side

To install this project in your image, open a playground and execute the following code snippet:

Metacello new
    baseline: 'MatplotLibBridge';
    repository: 'github://juliendelplanque/MatplotLibBridge/src';
    load

This will install version 0.1 of the project. You should only depend on released versions for your projects. The master branch of this repository contains latest commits and might not be stable.

Once MatplotLibBridge is installed in your image, you need to configure Python3Generator to use the Python interpreter you prefer. My advise is to use the FFI interpreter using: P3GInterpreter useFFIInterpreter. If your python3 binary is located in a standard path in your file system, it should be fine, else you can manually set the path to python3 binary using for example: P3GInterpreter current pathToPython: '/usr/bin/python3'.

How to use MatplotLibBridge?

This page provides some examples to illustrate how to use MatplotLibBridge. For each example, the method #show is called when the plot is built. This method open an interactive window showing a preview of the plot. If you want to export the plot in a file, you can use #generateIn: which takes a FileReference as argument. This method creates an image file with a format corresponding to the extension of the file reference. The available formats are .png, .svg and .pdf. For example: plot generateIn: '/tmp/foo.png' will generate the plot in the file /tmp/foo.png in png format.

Creating a line plot

The following code snippet creates a line plot for the factorial function between 0 and 10. It also illustrates that it is possible to use LaTeX code as marker for the points. Using #label: message allows to give name to the line that will be displayed in a corner of the plot.

MLBLinePlot new
	addPointsLine: [ :line | 
		line
			points: ((0 to: 10) collect: [ :i | i @ i factorial ]);
			marker: '$\triangledown$';
			label: 'Factorial' ];
	show

exampleLineplot

Creating a line plot using Y-Block line

The following code snippet creates a line plot for the factorial function between 0 and 10 using MLBYBlockLine. It is totally equivalent to the preceding example (in the result) but this is another way to express the plot using MatplotLibBridge.

MLBLinePlot new
	addYBlockLine: [ :line | 
		line
			x: (0 to: 10);
			yBlock: #factorial;
			marker: '$\triangledown$';
			label: 'Factorial' ];
	show

exampleLineplotYBlockLine

Creating multi-lines plot

The following code snippet creates a multi-lines plot for the square root function, the third-root function and the fourth-root function between 0 and 1000. It also shows how to change the color of a line (using #color:) and how to change its style (using #style:). Available styles for a line can be accessed using MLBLine>>#lineStyles

MLBLinePlot new
	addPointsLine: [ :line | line points: ((0 to: 1000) collect: [ :i | i @ i sqrt ]) ];
	addPointsLine: [ :line | 
		line
			points: ((0 to: 1000) collect: [ :i | i @ (i nthRoot: 3) ]);
			color: Color red;
			style: '--' ];
	addPointsLine: [ :line | 
		line
			points: ((0 to: 1000) collect: [ :i | i @ (i nthRoot: 4) ]);
			color: Color blue;
			style: 'dotted' ];
	show

exampleMultilineplot

Changing line width in line plot or multi-lines plot

It is possible to configure the width of each line in a line plot using #width:.

MLBLinePlot new
	addPointsLine: [ :line | 
		line
			points: ((0 to: 10) collect: [ :i | i @ i ]);
			width: 5;
			color: Color blue ];
	addPointsLine: [ :line | 
		line
			points: ((0 to: 10) collect: [ :i | i @ (i * 2) ]);
			width: 3;
			color: Color red ];
	addPointsLine: [ :line | 
		"#width = 1 if not specified."
		line
			points: ((0 to: 10) collect: [ :i | i @ (i * 3) ]);
			color: Color green ];
	show

exampleChangingLineWidthOfLineplot

Discontinuous lines in line plot or multi-lines plot

If you create points having Float nan as x or y, it allows to create discontinuous lines.

MLBLinePlot new
	addPointsLine: [ :line | 
		line
			points:
				((-10 to: -0) collect: [ :i | i @ 1 negated ]) , {(0 @ Float nan)}
					, ((0 to: 10) collect: [ :i | i @ 1 ]);
			label: 'Discontinous line';
			color: Color red ];
	addPointsLine: [ :line | 
		line
			points:
				((-10 to: -0) collect: [ :i | i @ 0.5 negated ])
					, ((0 to: 10) collect: [ :i | i @ 0.5 ]);
			label: 'Continous line';
			color: Color blue ];
	show

exampleDiscontinuousLineplot

Set an axis to be in logarithmic scale

Calling the method #logScale in #configYAxis block makes the scale of the concerned axis logarithmic. Other scales are available, see MLBAbstractAxis>>validScales.

MLBLinePlot new
	addPointsLine: [ :line | 
		line
			points: ((0 to: 100) collect: [ :i | i @ i exp ]);
			label: 'exp(x)' ];
	configYAxis: [ :yAxis |
		yAxis logScale ];
	show

exampleLogscaleLineplot

Creating a bar plot

The following code snippet creates a bar plot for some data and to display their standard deviation. This example also illustrates how to do some basic configuration of x and y axes (#configXAxis: and #configYAxis:).

|data std |
data := #(20 35 30 35 27).
std := #(2 3 4 1 2).

MLBBarPlot new
	data: data;
	labels: #('G1' 'G2' 'G3' 'G4' 'G5');
	color: Color blue;
	configXAxis: [ :xAxis |
		xAxis
			labelsRotation: 45 ];
	configYAxis: [ :yAxis |
		yAxis
			title: 'Y label' ];
	title: 'Barplot example';
	errorBars: std;
	errorBarsColor: Color black;
	alignLabelCenter;
	show.

exampleBarplot

Creating an horizontal box plot

The following code snippet creates an horizontal box plot for some random data.

MLBBoxPlot new
	dataList: {((1 to: 100) collect: [ :i | (1 to: 10) atRandom ]) . ((1 to: 100) collect: [ :i | (1 to: 10) atRandom ])};
	beHorizontal;
	configYAxis: [ :axis|
		axis
			labels: #('Data 1' 'Data 2') ];
	show

exampleHorizontalBoxplot

Creating a stacked bar plot

The following code snippet creates a stacked bar plot for some data and to display their standard deviation. The #dataList of a MLBStackedBarPlot should be a collection of collections of the same arity. It also shows how to rotate the labels of an axis.

| menMeans womenMeans menStd womenStd data std |
menMeans := #(20 35 30 35 27).
womenMeans := #(25 32 34 20 25).
menStd := #(2 3 4 1 2).
womenStd := #(3 5 2 3 3).

data := (1 to: menMeans size) collect: [ :i |
			{ menMeans at: i. womenMeans at: i } ].
std := (1 to: menStd size) collect: [ :i |
			{ menStd at: i. womenStd at: i } ].

MLBStackedBarPlot new
	dataList: data;
	colorList: {Color blue. Color pink};
	title: 'Scores by group and gender';
	configXAxis: [ :xAxis |
		xAxis
			labelsRotation: 45;
			labels: #('G1' 'G2' 'G3' 'G4' 'G5') ];
	configYAxis: [ :yAxis |
		yAxis
			title: 'Scores' ];
	errorBarsList: std;
	errorBarsColorList: { Color black . Color black };
	alignLabelCenter;
	show.

exampleStackedBarplot

Creating a vertical box plot

The following code snippet creates a vertical box plot for some random data. No need to call #beVertical since this is the default orientation of the plot.

MLBBoxPlot new
	dataList: {((1 to: 100) collect: [ :i | (1 to: 10) atRandom ])};
	configXAxis: [ :xAxis|
		xAxis
			labels: #('Data') ];
	show

exampleVerticalBoxplot

Creating a pie plot

The following code snippet creates a pie box plot for some data that sum to 100. You can optionally add labels:, set the a shadow or not (hasShadow:), configure the axis: (here we want to have a round pie, so we set it to 'equal'), explode each part of the pie at different degrees (here only the part concerning 30 data is exploded) and choose the start angle.

MLBPiePlot new
	data: #(50 20 30);
	labels: #(One Two Three);
	hasShadow: false;
	axis: 'equal';
	explode: #(0 0 0.1);
	startAngle: -90;
	show

examplePieplot

Creating a scatter plot (new API)

The following code snippet creates a scatter plot for some random data. The principle is to create MLBScatterData, to set them a position, a color, a size and a shape

MLBScatterPlot2 new
	data: ((1 to: 20) collect: [ :i | 
		(MLBScatterData position: (1 to: 15) atRandom @ (1 to: 15) atRandom size: (20 to: 500) atRandom)
			color: Color random;
			marker: MLBConstants markers atRandom;
			yourself ]);
	show

exampleScatterplot2

Creating a scatter plot (old API)

The following code snippet creates a scatter plot for some random data. Here we create MLBCircles with a random position, a random diameter and a random color and provide them to the MLBScatterPlot instance.

MLBScatterPlot new
	circles: ((1 to: 10) collect: [ :i | 
		(MLBCircle position: (1 to: 15) atRandom @ (1 to: 15) atRandom size: (20 to: 500) atRandom)
			color: Color random;
			yourself ]);
	show

exampleScatterplot

Using LaTeX in legend

The following code snippet shows you how to create a line plot with LaTeX code for lines' labels. In fact, with MatplotLibBridge, you can use LaTeX in any String you provide.

| interval |
interval := 1 to: 1000.
MLBLinePlot new
	addPointsLine: [ :line |
		line
			points: (interval collect: [ :i | i @ i sqrt ]);
			color: Color green;
			label: '$\sqrt[2]{x}$' ];
	addPointsLine: [ :line |
		line
			points: (interval collect: [ :i | i @ (i nthRoot: 3) ]);
			color: Color red;
			label: '$\sqrt[3]{x}$' ];
	addPointsLine: [ :line |
		line
			points: (interval collect: [ :i | i @ (i nthRoot: 4) ]);
			color: Color blue;
			label: '$\sqrt[4]{x}$' ];
	addPointsLine: [ :line |
		line
			points: (interval collect: [ :i | i @ i log ]);
			label: '$log(x)$' ];
	configXAxis: [ :axis | axis min: 0 ];
	configYAxis: [ :axis | axis min: 0 ];
	addLegend;
	show

exampleLegend

Annotations

On any plot, you can add annotations. An annotation is an extra graphical element you add on your plot such as for example an arrow pointing to a certain interesting location on the plot.

MLBLinePlot new
	addPointsLine: [ :line | 
		line
			points: ((1 to: 50 by: 2) collect: [ :i | i @ (i ** 3) ]);
			style: 'solid';
			marker: 'None';
			color:
				(Color
					r: 0
					g: 0
					b: 0
					alpha: 0.3) ];
	addAnnotation: [ :annotation | 
		annotation
			content: 'a thing';
			position: 10 @ (10 ** 3);
			textPosition: 10 @ (10 ** 4);
			arrowProperties: {('arrowstyle' -> '<|-')} asDictionary ];
	addAnnotation: [ :annotation | 
		annotation
			content: 'another thing';
			position: 30 @ (30 ** 3);
			textPosition: 35 @ (30 ** 3 + 10);
			arrowProperties:
				{('facecolor' -> 'black').
				('shrink' -> 4)} asDictionary ];
	show

exampleAnnotations

Style sheet

MatplotLib allows to use stylesheet to reuse/change easily plot styles. The bridge actually expose this API with the MLBStyleSheet object. The name of properties are the same as in the python version. For more information see the official documentation of matplotlib: https://matplotlib.org/users/customizing.html.

| style |
style := MLBStyleSheet new
				setProperty: 'color' ofGroup: 'text' to: 'red';
				setProperty: 'weight' ofGroup: 'font' to: 'bold';
				yourself.
				
MLBBarPlot new
	data: #(1 2 3);
	labels: #('Group 1' 'Group 2' 'Group 3');
	title: 'A title';
	style: style;
	show

exampleStyleSheet

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].