All Projects → darrenjw → scala-glm

darrenjw / scala-glm

Licence: Apache-2.0 license
Scala library for fitting linear and generalised linear statistical models

Programming Languages

scala
5932 projects
Makefile
30231 projects

Labels

Projects that are alternatives of or similar to scala-glm

YouTube-DeepDark
Videos should only be watched in the dark. May the dark be kinder on thine eyes. (YouTube dark theme)
Stars: ✭ 140 (+438.46%)
Mutual labels:  breeze
MyAnimeList-DeepDark
Satisfy thy craving for anime and organization. May the dark be kinder on thine eyes. (MyAnimeList Dark Theme)
Stars: ✭ 30 (+15.38%)
Mutual labels:  breeze
BreezeX Cursor
extended KDE cursor
Stars: ✭ 59 (+126.92%)
Mutual labels:  breeze
Stylus-DeepDark
Write thy themes in the dark. May the dark be kinder on thine eyes. (Stylus dark theme)
Stars: ✭ 43 (+65.38%)
Mutual labels:  breeze
northwind-demo
Breeze demo with .NET and NodeJS servers and Angular, Aurelia, React, and Vue clients
Stars: ✭ 23 (-11.54%)
Mutual labels:  breeze
KDynamic
An Alternative to MacOS Mojave Dynamic Theme and Wallpaper Changer
Stars: ✭ 48 (+84.62%)
Mutual labels:  breeze
La Capitaine Icon Theme
La Capitaine is an icon pack designed to integrate with most desktop environments. The set of icons takes inspiration from the latest iterations of macOS and Google's Material Design.
Stars: ✭ 1,858 (+7046.15%)
Mutual labels:  breeze

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.7"

The current stable release is "0.7". 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.5.1"
> set scalaVersion := "3.0.1"
> set libraryDependencies += "com.github.darrenjw" %% "scala-glm" % "0.7"
> console
scala> import scalaglm.*

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.8-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-2022 Darren J Wilkinson, but released as open source software under an Apache 2.0 license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].