-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migration to Dotty #143
Comments
Hi, this project is not being actively developed anymore but we will still review any submitted PRs. |
Hi, thanks for writing. If the project is no longer actively developed, where do you advise me to turn to for a good scala-lib for plotting? Any reason why the library is falling in disuse?
There is a dearth of such libs – we are falling behind Python (not a choice for a seasoned scala developer, I am afraid).
Grüsse
Stephan
From: Amy Hawkins ***@***.***>
Date: Monday, 3 October 2022 at 18:23
To: cibotech/evilplot ***@***.***>
Cc: Stephan Maier ***@***.***>, Author ***@***.***>
Subject: Re: [cibotech/evilplot] Migration to Dotty (Issue #143)
Hi, this project is not being actively developed anymore but we will still review any submitted PRs.
—
Reply to this email directly, view it on GitHub<#143 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/A2MVTJIMGNEZHHDC5AC5IJ3WBMCBVANCNFSM6AAAAAAQZQDMZ4>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
AFAIK the lib is already usable with Scala 3. Just make sure to import For instance this script works: //> using scala "3.2.1"
//> using lib "io.github.cibotech:evilplot_2.13:0.8.1"
//> using lib "io.github.cibotech:evilplot-repl_2.13:0.8.1"
import com.cibo.evilplot._
import com.cibo.evilplot.plot._
import com.cibo.evilplot.plot.aesthetics.DefaultTheme._
import com.cibo.evilplot.numeric.Point
val data = Seq.tabulate(100) { i =>
Point(i.toDouble, scala.util.Random.nextDouble())
}
displayPlot(ScatterPlot(data).render()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you intend to make evilplot available for dotty?
There has been little activity for a while. Does this mean that development has ceased? Any hope for a version 1.0?
The text was updated successfully, but these errors were encountered: