Changes
Page history
yfournier created page: create your first axes
authored
Feb 16, 2017
by
Yori Fournier
Hide whitespace changes
Inline
Side-by-side
create-your-first-axes.md
View page @
9b796bfd
# Summary
1.
[
Concept
](
#concept
)
2.
[
The class AxMyFirstAxes
](
#the-class-axmyfirstaxes
)
3.
[
Linking the class to the module
](
#linking-the-new-class-to-the-module
)
4.
[
Using the axes
](
#using-the-axes
)
# Concept
**myplotlib**
is an interface between you and the great functionality of matplotlib.
...
...
@@ -34,7 +41,7 @@ ensuring that you can enjoy the full power of matplotlib.
Now we will see how to overwrite the
**base class**
`MyAxes`
with a new class that we will call
`AxMyFirstAxes`
.
To overwrite a class you just need to overwrite these two empty functions and actually do something.
# The
axes
class
# The class
AxMyFirstAxes
Create
`mymodule/myAxes/<name of my class>.py`
...
...
...
...