Quick graph simple matplotlib
Project description
kora_quickdraw
Matplotlib simple graph template
Install
pip install kora_quickdraw
Usage
There two commands
- defining figure and axes
- showing graph
fig, ax1, ax2 = start_plot2()
...
show_plot2(1, fig, ax1, ax2)
Full example
In example directory
from kora_quickdraw import *
import numpy as np
x = np.linspace(-np.pi , np.pi)
y1 = np.sin(x)
y2 = np.cos(x)
fig, ax1, ax2 = start_plot2()
ax1.plot(x,y1)
ax1.plot(x,y2)
ax2.plot(x, y1*y2)
show_plot2(1, fig, ax1, ax2, t1="sin(x) and cos(x)", t2="sin(x) x cos(x)", y2='y')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
kora_quickdraw-0.0.2.tar.gz
(3.2 kB
view details)
Built Distribution
File details
Details for the file kora_quickdraw-0.0.2.tar.gz
.
File metadata
- Download URL: kora_quickdraw-0.0.2.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 172f849c36acfd6756f202edbf4b30620a97e79c80187b327f7f1e2b8f8d69e4 |
|
MD5 | 8ee64998360f3a7d3dbb8541c9a9f43d |
|
BLAKE2b-256 | 8321323ed83cec8337870f990a1194a818598253e6e870c5bb858020ea84d0b3 |
File details
Details for the file kora_quickdraw-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: kora_quickdraw-0.0.2-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf355a57f0b4687231c35dbc092806c656dc14dd274f28b5007e4ce18a4e59a1 |
|
MD5 | 7d5ebd9b3eda009442927756f7a38a32 |
|
BLAKE2b-256 | 348273c22d79880df653d7a401f8729dc4bd422d8734e749640baab46162cc06 |