-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from lukstafi/main
Fixes #24: representation extensions; provides a plotting extension: scatterplots, line plots, decision boundaries etc.
- Loading branch information
Showing
27 changed files
with
1,249 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
version: "0.11" | ||
synopsis: "Printbox extension for plotting" | ||
description: """ | ||
|
||
Extends Printbox with the ability to print scatter plots, line plots, decision boundaries. | ||
Printbox allows to print nested boxes, lists, arrays, tables in several formats""" | ||
maintainer: ["c-cube" "lukstafi"] | ||
authors: ["Simon Cruanes" "Guillaume Bury" "lukstafi"] | ||
license: "BSD-2-Clause" | ||
homepage: "https://github.com/c-cube/printbox" | ||
bug-reports: "https://github.com/c-cube/printbox/issues" | ||
depends: [ | ||
"dune" {>= "3.0"} | ||
"printbox" {= version} | ||
"printbox-text" {= version} | ||
"printbox-html" {= version} | ||
"printbox-md" {= version} | ||
"tyxml" {>= "4.3"} | ||
"odoc" {with-test} | ||
"mdx" {>= "1.4" & with-test} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/c-cube/printbox.git" |
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
Oops, something went wrong.