-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating ranges, and colors, adding readme example code
- Loading branch information
1 parent
1fa4dee
commit 3aae5cb
Showing
7 changed files
with
157 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# SPDX-FileCopyrightText: Copyright (c) 2023 Jose D. Montoya | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
from random import choice | ||
import board | ||
import displayio | ||
from ulab import numpy as np | ||
from circuitpython_uplot.uplot import Uplot | ||
from circuitpython_uplot.ubar import ubar | ||
from circuitpython_uplot.uscatter import uscatter | ||
from circuitpython_uplot.upie import upie | ||
from circuitpython_uplot.ucartesian import ucartesian | ||
|
||
|
||
display = board.DISPLAY | ||
plot = Uplot(0, 0, display.width, display.height, show_box=False) | ||
|
||
group = displayio.Group() | ||
|
||
palette = displayio.Palette(1) | ||
palette[0] = 0xFFFFFF | ||
|
||
|
||
plot2 = Uplot(0, 0, 130, 130) | ||
x = np.linspace(-4, 4, num=25) | ||
constant = 2.0 / np.sqrt(2 * np.pi) | ||
y = constant * np.exp((-(x**2)) / 4.0) | ||
ucartesian(plot2, x, y, rangex=[-5, 5], rangey=[0, 1]) | ||
plot.append(plot2) | ||
|
||
plot3 = Uplot(130, 0, 160, 160) | ||
|
||
# Setting up tick parameters | ||
plot3.tick_params(tickheight=12, tickcolor=0xFF00FF, tickgrid=True) | ||
|
||
# Seeting some date to plot | ||
x = np.linspace(-4, 4, num=50) | ||
constant = 1.0 / np.sqrt(2 * np.pi) | ||
y = constant * np.exp((-(x**2)) / 2.0) | ||
|
||
# Plotting and showing the plot | ||
ucartesian(plot3, x, y, rangex=[-5, 5], rangey=[0, 0.5]) | ||
plot.append(plot3) | ||
|
||
plot4 = Uplot(290, 0, 150, 150) | ||
|
||
# Setting up tick parameters | ||
plot4.axs_params(axstype="box") | ||
a = ["a", "b", "c", "d"] | ||
b = [3, 5, 1, 7] | ||
ubar(plot4, a, b, 0xFF1000, fill=True) | ||
|
||
plot.append(plot4) | ||
|
||
# Setting up the display | ||
|
||
plot5 = Uplot(0, 180, 120, 120) | ||
|
||
# Setting up tick parameters | ||
|
||
plot5.axs_params(axstype="cartesian") | ||
a = np.linspace(3, 98) | ||
b = [choice(a) for _ in a] | ||
uscatter(plot5, a, b, rangex=[0, 102], rangey=[0, 102], radius=2) | ||
|
||
plot.append(plot5) | ||
|
||
plot6 = Uplot(130, 160, 150, 150) | ||
|
||
# Setting up tick parameters | ||
plot6.axs_params(axstype="box") | ||
a = [5, 2, 7, 3] | ||
|
||
upie(plot6, a, 0, 0) | ||
|
||
plot.append(plot6) | ||
|
||
|
||
plot7 = Uplot(290, 160, 150, 150) | ||
|
||
# Creating some points to graph | ||
x = np.linspace(1, 10, num=10) | ||
|
||
y = [6, 7, 9, 6, 9, 7, 6, 6, 8, 9] | ||
ucartesian(plot7, x, y, rangex=[0, 11], rangey=[0, 12], line_color=0xFF0000, fill=True) | ||
|
||
y = [4, 3, 7, 8, 3, 9, 3, 2, 1, 2] | ||
ucartesian(plot7, x, y, rangex=[0, 11], rangey=[0, 12], line_color=0xFF00FF, fill=True) | ||
|
||
y = [1, 4, 6, 3, 6, 6, 5, 0, 9, 2] | ||
ucartesian(plot7, x, y, rangex=[0, 11], rangey=[0, 12], line_color=0x4444FF, fill=True) | ||
|
||
plot.append(plot7) | ||
|
||
|
||
display.show(plot) |