Metadata-Version: 2.1
Name: build-duck
Version: 0.0.2
Summary: Package to create a duck marker in matplotlib.
Home-page: https://github.com/CoraDeFrancesco/build_duck
Author: Cora DeFrancesco
Author-email: coraanndefran@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# build_duck
Add a duck marker to Matplotlib.

# Example
from build_duck import get_marker

import numpy as np

import matplotlib.pyplot as plt

marker_duck = get_marker()

x = np.linspace(0,100,20)

y = 10*np.sin(x)

plt.figure(dpi=100)

plt.plot(x,y, marker=marker_duck, ms=20)

plt.show()

plt.clf()


