darrenjw / scala-glm   0.8

Apache License 2.0 GitHub

Scala library for fitting linear and generalised linear statistical models

Scala versions: 3.x 2.13 2.12 2.11

scala-glm

Scala library for regression modelling

Regression modelling, including fitting linear and generalised linear statistical models, diagnosing fit and making predictions. Diagnostic plots. Also, flexible regression modelling using orthogonal polynomials, cosine series, B-splines, etc. This library builds on top of Breeze, and is aimed primarily at people already using Scala and Breeze who want more statistical functionality.

Installation/Getting started

This library is simplest to use with sbt. You should install sbt before attempting to use this library.

To use the pre-built binary, add the following lines to your build.sbt:

libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.8"

The current stable release is "0.8". It is cross-built for Scala 3, Scala 2.12 and 2.13 and published to the central repository. Version 0.3 was the final release for Scala 2.11.

There is a giter8 template for scala-glm, so using recent versions of sbt you can create a minimal scala-glm project template with:

sbt new darrenjw/scala-glm.g8

If you just want to try out the library without setting up any kind of project, you can do so with a session like:

$ sbt "-Dsbt.version=1.9.0"
> set scalaVersion := "3.3.0"
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.8"
> console
scala> import scalaglm.*

Alternatively, if you use scala-cli, just add

//> using scala 3.3.0
//> using dep com.github.darrenjw::scala-glm:0.8

to the top of your script.

See below for documentation links.

This library has a dependence on Breeze, so if you have a dependence on scala-glm you don't need to add an additional dependence on Breeze. Some familiarity with Breeze is assumed for effective use of this library.

Latest snapshot

If you want to use the latest snapshot, add the following to your build.sbt:

libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.9-SNAPSHOT"
resolvers += "Sonatype Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"

Building from source

If building from source, running sbt console from this directory should give a Scala REPL with a dependence on the library. Running sbt test will run all tests (but note that an R installation is required for many of the tests, which cross-check results against R). Running sbt doc will generate ScalaDoc API documentation.

Documentation

Author

This library is Copyright (C) 2017-2023 Darren J Wilkinson, but released as open source software under an Apache 2.0 license.