Skip to content

Commit

Permalink
rename and move
Browse files Browse the repository at this point in the history
  • Loading branch information
dudung committed Dec 15, 2024
1 parent a4e172a commit 98f00eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ $$
$$
```py
import lumpur.dat.clasdata as ldc
import lumpur.dat.dataviz as ldv
from lumpur.viz.plot.binary import plot_binary

coeffs = [[0.41], [-0.8, -1.2], [1, 0, 1]]
r1 = [0, 1.05, 0.05]
r2 = [0, 1.05, 0.05]
df = ldc.binary(coeffs, r1=r1, r2=r2)
ldv.plot_binary(df)
plot_binary(df)
```
<img src="https://raw.githubusercontent.com/dudung/lumpur/refs/heads/main/docs/images/dataviz_circular.png" width="300" />

Expand All @@ -97,11 +97,11 @@ $$
$$
```py
import lumpur.dat.clasdata as ldc
import lumpur.dat.dataviz as ldv
from lumpur.viz.plot.binary import plot_binary

coeffs = [[0], [-1, 1]]
df = ldc.binary(coeffs)
ldv.plot_binary(df)
plot_binary(df)
```
<img src="https://raw.githubusercontent.com/dudung/lumpur/refs/heads/main/docs/images/dataviz_linear.png" width="300" />

Expand Down
File renamed without changes.

0 comments on commit 98f00eb

Please sign in to comment.