Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f5fa2ae

Browse files
committed
Added examples to lbm
1 parent ccd6377 commit f5fa2ae

5 files changed

Lines changed: 11 additions & 1 deletion

File tree

examples/lines_bars_and_markers/scatter_custom_symbol.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Scatter Custom Symbol
44
=====================
55
6+
Custom symbol in scatter plot.
7+
68
"""
79
import matplotlib.pyplot as plt
810
import numpy as np

examples/lines_bars_and_markers/scatter_hist.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Scatter Hist
44
============
55
6+
Creates histogram from scatter plot.
7+
68
"""
79
import numpy as np
810
import matplotlib.pyplot as plt

examples/lines_bars_and_markers/scatter_masked.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Scatter Masked
44
==============
55
6+
Add mask line in plot.
7+
68
"""
79
import matplotlib.pyplot as plt
810
import numpy as np

examples/lines_bars_and_markers/scatter_star_poly.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
Scatter Star Poly
44
=================
55
6+
Create multiple scatter plots.
7+
68
"""
79
import numpy as np
810
import matplotlib.pyplot as plt

examples/lines_bars_and_markers/scatter_symbol.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
Scatter Symbol
44
==============
55
6+
Scatter plot with symbols.
7+
68
"""
7-
import matplotlib.pyplot as plt
9+
from matplotlib import pyplot as plt
810
import numpy as np
911
import matplotlib
1012

0 commit comments

Comments
 (0)