yfournier created page: get started authored by Yori Fournier's avatar Yori Fournier
# Summary
1. [Install the module mypltemplate](https://gitlab.aip.de/yfournier/mypltemplate/wikis/get-started#1-install-the-module-mypltemplate)
2. [Plotting some Examples](https://gitlab.aip.de/yfournier/mypltemplate/wikis/get-started#2-plotting-some-examples)
3. [Examples](https://gitlab.aip.de/yfournier/mypltemplate/wikis/get-started#3-examples)
# 1. Install the module mypltemplate
......@@ -188,3 +189,20 @@ containing a canvas.
win = MyWin(fig)
```
This should produce a window on which `fig` should be plotted.
# 3. Examples
## What you just did
```python
# Import the module
from mymodule import *
# Read some data
run1 = readRun('./mymodule/data/serie1/run1.txt')
# Create a figure
fig = FigOneAxes3D((run1,), AxResults)
# Create a window where the figure is shown
win = MyWin(fig)
```
\ No newline at end of file